/* ==========================================================================
   TEMPLATE CARD STYLES — 40 Templates (30 basic + 10 experimental)
   Extracted from carousel_cards.html & carousel_experimental_static.html
   ========================================================================== */

/* Base card reset */
.card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  font-family: 'Noto Sans KR', sans-serif;
  box-sizing: border-box;
}
.card * { box-sizing: border-box; margin: 0; padding: 0; }
/* All direct children sit above z-index:0 images by default */
.card > * { position: relative; z-index: 1; }

/* ===== CARD 1: Sage Green Minimal ===== */
.c1 {
  background: #e8ede4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.c1 .tag { font-size: 15px; letter-spacing: 3px; color: #7a9a6e; text-transform: uppercase; margin-bottom: 20px; }
.c1 h2 { font-family: 'Playfair Display', 'Noto Serif KR', serif; font-size: 54px; color: #2d3d28; line-height: 1.2; margin-bottom: 16px; }
.c1 p { font-size: 20px; color: #5a6e53; line-height: 1.8; }
.c1 .num { position: absolute; top: 32px; right: 36px; font-size: 108px; font-weight: 900; color: rgba(122,154,110,0.15); line-height: 1; }
.c1 .dot { width: 8px; height: 8px; border-radius: 50%; background: #7a9a6e; margin-top: 24px; }

/* ===== CARD 2: Bold Black Typographic ===== */
.c2 {
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.c2 .big { font-family: 'Bebas Neue', sans-serif; font-size: 135px; color: #fff; line-height: 0.9; letter-spacing: -2px; }
.c2 .sub { font-size: 18px; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-top: 16px; }
.c2 .line { width: 40px; height: 2px; background: #f0c040; margin: 16px 0; }
.c2 p { font-size: 18px; color: #555; line-height: 1.7; }

/* ===== CARD 3: Warm Terracotta ===== */
.c3 {
  background: #d4633a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
}
.c3 .top { display: flex; justify-content: space-between; align-items: flex-start; }
.c3 .num-big { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 180px; color: rgba(255,255,255,0.2); line-height: 1; font-weight: 300; }
.c3 .icon { width: 44px; height: 44px; border: 2px solid rgba(255,255,255,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 27px; }
.c3 h2 { font-family: 'DM Serif Display', 'Noto Serif KR', serif; font-size: 48px; color: #fff; line-height: 1.2; }
.c3 p { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-top: 10px; }

/* ===== CARD 4: Cream & Navy Elegant ===== */
.c4 {
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.c4 .circle { width: 80px; height: 80px; border-radius: 50%; background: #1e3a5f; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.c4 .circle span { color: #f5f0e8; font-size: 42px; }
.c4 h2 { font-family: 'Playfair Display', 'Noto Serif KR', serif; font-size: 39px; color: #1e3a5f; margin-bottom: 14px; line-height: 1.3; }
.c4 p { font-size: 18px; color: #5a6070; line-height: 1.8; }
.c4 .tag { background: #1e3a5f; color: #f5f0e8; font-size: 14px; letter-spacing: 2px; padding: 5px 12px; margin-top: 20px; text-transform: uppercase; }

/* ===== CARD 5: Split Layout ===== */
.c5 { display: flex; }
.c5 .left { width: 45%; background: #2b2b2b; display: flex; align-items: center; justify-content: center; }
.c5 .left span { font-size: 90px; }
.c5 .right { flex: 1; background: #f7f5f0; padding: 30px 24px; display: flex; flex-direction: column; justify-content: center; }
.c5 .right .num { font-family: 'Space Mono', monospace; font-size: 16px; color: #aaa; margin-bottom: 12px; }
.c5 .right h2 { font-size: 30px; font-weight: 700; color: #1a1a1a; line-height: 1.3; margin-bottom: 12px; }
.c5 .right p { font-size: 16px; color: #666; line-height: 1.7; }
.c5 .right .btn { margin-top: 18px; background: #1a1a1a; color: #fff; font-size: 15px; padding: 8px 14px; display: inline-block; letter-spacing: 1px; }

/* ===== CARD 6: Pink Y2K ===== */
.c6 {
  background: linear-gradient(135deg, #ff6eb4, #ffa0d0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  position: relative;
}
.c6::before { content: '✦'; position: absolute; top: 20px; right: 24px; font-size: 60px; color: rgba(255,255,255,0.4); }
.c6::after { content: '✦'; position: absolute; bottom: 60px; left: 20px; font-size: 30px; color: rgba(255,255,255,0.3); }
.c6 .tag { background: #fff; color: #e0407a; font-size: 14px; letter-spacing: 2px; padding: 4px 10px; display: inline-block; margin-bottom: 18px; border-radius: 20px; font-weight: 700; }
.c6 h2 { font-family: 'Syne', sans-serif; font-size: 48px; color: #fff; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.c6 p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.c6 .handle { position: absolute; bottom: 24px; right: 28px; font-size: 15px; color: rgba(255,255,255,0.7); }

/* ===== CARD 7: Dark Stats Card ===== */
.c7 {
  background: #0d1117;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c7 .header { display: flex; justify-content: space-between; align-items: center; }
.c7 .header span { font-size: 15px; color: #58a6ff; letter-spacing: 2px; text-transform: uppercase; }
.c7 .header .dot-live { width: 8px; height: 8px; background: #3fb950; border-radius: 50%; }
.c7 .stat { display: flex; align-items: baseline; gap: 6px; }
.c7 .stat .val { font-family: 'Space Mono', monospace; font-size: 96px; color: #fff; font-weight: 700; line-height: 1; }
.c7 .stat .unit { font-size: 27px; color: #58a6ff; }
.c7 .desc { font-size: 16px; color: #8b949e; line-height: 1.6; }
.c7 .bar-row { display: flex; gap: 3px; margin-top: 8px; }
.c7 .bar { height: 4px; border-radius: 2px; }

/* ===== CARD 8: Magazine Quote ===== */
.c8 {
  background: #f9f5ee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
  position: relative;
}
.c8 .quote-mark { font-family: 'Playfair Display', 'Noto Serif KR', serif; font-size: 180px; color: #e8dfc8; line-height: 0.8; position: absolute; top: 20px; left: 32px; }
.c8 blockquote { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 39px; color: #2a2015; line-height: 1.5; font-style: italic; position: relative; z-index: 1; }
.c8 cite { display: block; margin-top: 20px; font-size: 16px; color: #8a7a5a; letter-spacing: 2px; text-transform: uppercase; font-style: normal; }

/* ===== CARD 9: Neon on Dark ===== */
.c9 {
  background: #08001a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.c9::before { content: ''; position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(120,0,255,0.3), transparent 70%); top: -40px; right: -40px; }
.c9 .step { font-family: 'Space Mono', monospace; font-size: 16px; color: #7800ff; letter-spacing: 3px; margin-bottom: 16px; }
.c9 h2 { font-family: 'Syne', sans-serif; font-size: 51px; color: #fff; font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.c9 h2 span { color: #bf80ff; }
.c9 p { font-size: 18px; color: rgba(200,180,255,0.7); line-height: 1.8; }
.c9 .glow-line { width: 60px; height: 2px; background: #7800ff; box-shadow: 0 0 10px #7800ff; margin-top: 24px; }

/* ===== CARD 10: Checklist Style ===== */
.c10 {
  background: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #eee;
}
.c10 h2 { font-size: 27px; font-weight: 700; color: #111; margin-bottom: 24px; }
.c10 .item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.c10 .item:last-child { border-bottom: none; }
.c10 .check { width: 22px; height: 22px; border-radius: 50%; background: #22c55e; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c10 .check svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; fill: none; }
.c10 .check.empty { background: #f0f0f0; }
.c10 .item-text { font-size: 20px; color: #333; line-height: 1.4; }

/* ===== CARD 11: Bold Gradient Header ===== */
.c11 { display: flex; flex-direction: column; }
.c11 .top { background: linear-gradient(135deg, #667eea, #764ba2); padding: 36px 32px 28px; flex: 1; }
.c11 .top .num { font-family: 'Space Mono', monospace; font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.c11 .top h2 { font-family: 'Syne', sans-serif; font-size: 42px; color: #fff; font-weight: 800; line-height: 1.2; }
.c11 .bottom { background: #fff; padding: 24px 32px; }
.c11 .bottom p { font-size: 18px; color: #555; line-height: 1.8; }
.c11 .bottom .profile { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.c11 .bottom .avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #667eea, #764ba2); }
.c11 .bottom .name { font-size: 15px; color: #888; }

/* ===== CARD 12: Step Process ===== */
.c12 {
  background: #1a1a2e;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c12 .title { font-size: 15px; color: #e94560; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
.c12 .steps { display: flex; flex-direction: column; gap: 16px; }
.c12 .step-item { display: flex; align-items: center; gap: 16px; }
.c12 .step-num { width: 36px; height: 36px; border: 2px solid #e94560; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 21px; color: #e94560; font-weight: 700; flex-shrink: 0; }
.c12 .step-text h3 { font-size: 21px; color: #fff; margin-bottom: 2px; }
.c12 .step-text p { font-size: 16px; color: #7a7a9a; line-height: 1.5; }

/* ===== CARD 13: Photo-Style with Overlay ===== */
.c13 {
  background: linear-gradient(160deg, #2c5364, #203a43, #0f2027);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  position: relative;
}
.c13::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.c13 .tag-row { display: flex; gap: 8px; margin-bottom: 16px; }
.c13 .tag { border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); font-size: 14px; padding: 3px 10px; letter-spacing: 1px; text-transform: uppercase; }
.c13 h2 { font-family: 'Fraunces', 'Noto Serif KR', serif; font-size: 45px; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.c13 p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== CARD 14: Orange Brutalist ===== */
.c14 {
  background: #ff5500;
  border: 3px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.c14 .top-bar { display: flex; justify-content: space-between; }
.c14 .sq { width: 20px; height: 20px; background: #000; }
.c14 .sq.white { background: #fff; }
.c14 h2 { font-family: 'Bebas Neue', sans-serif; font-size: 108px; color: #000; line-height: 0.9; letter-spacing: -1px; }
.c14 .bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.c14 p { font-size: 16px; color: #000; line-height: 1.6; max-width: 55%; font-weight: 500; }
.c14 .arrow { width: 40px; height: 40px; background: #000; display: flex; align-items: center; justify-content: center; color: #ff5500; font-size: 30px; }

/* ===== CARD 15: Soft Pastel ===== */
.c15 {
  background: #fdf4ff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.c15 .emoji-bg { width: 80px; height: 80px; background: #f0d6ff; border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 54px; margin-bottom: 20px; }
.c15 h2 { font-size: 33px; font-weight: 700; color: #5b2c8d; margin-bottom: 12px; line-height: 1.3; }
.c15 p { font-size: 18px; color: #8a6ea8; line-height: 1.8; }
.c15 .pills { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.c15 .pill { background: #f0d6ff; color: #5b2c8d; font-size: 15px; padding: 5px 12px; border-radius: 20px; }

/* ===== CARD 16: Minimal Line Art ===== */
.c16 {
  background: #fafafa;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border: 1px solid #e8e8e8;
}
.c16 .deco { position: absolute; top: 0; right: 0; width: 120px; height: 120px; border-left: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.c16 .step { font-family: 'Space Mono', monospace; font-size: 15px; color: #bbb; letter-spacing: 2px; margin-bottom: 20px; }
.c16 h2 { font-size: 36px; font-weight: 700; color: #111; line-height: 1.3; margin-bottom: 14px; }
.c16 p { font-size: 18px; color: #666; line-height: 1.8; }
.c16 .rule { width: 100%; height: 1px; background: #e8e8e8; margin: 20px 0; }
.c16 .footer { display: flex; justify-content: space-between; align-items: center; }
.c16 .footer span { font-size: 15px; color: #aaa; }

/* ===== CARD 17: Retro Newspaper ===== */
.c17 {
  background: #f0ead8;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #2a1f14;
}
.c17 .paper-header { border-bottom: 3px double #2a1f14; padding-bottom: 8px; text-align: center; }
.c17 .paper-title { font-family: 'Playfair Display', 'Noto Serif KR', serif; font-size: 16px; color: #2a1f14; letter-spacing: 4px; text-transform: uppercase; }
.c17 .date { font-family: 'Space Mono', monospace; font-size: 14px; color: #7a6a4a; margin-top: 4px; }
.c17 .headline { font-family: 'Playfair Display', 'Noto Serif KR', serif; font-size: 39px; color: #2a1f14; line-height: 1.2; text-align: center; padding: 16px 0; }
.c17 .columns { display: flex; gap: 16px; border-top: 1px solid #c0b090; padding-top: 12px; }
.c17 .col { flex: 1; font-size: 15px; color: #4a3820; line-height: 1.7; }
.c17 .col + .col { border-left: 1px solid #c0b090; padding-left: 16px; }

/* ===== CARD 18: Teal Modern ===== */
.c18 {
  background: #0d7377;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
}
.c18 .num { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 150px; color: rgba(255,255,255,0.15); line-height: 1; font-weight: 300; align-self: flex-end; }
.c18 h2 { font-family: 'DM Serif Display', 'Noto Serif KR', serif; font-size: 45px; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.c18 p { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.c18 .chip { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 14px; letter-spacing: 2px; padding: 5px 12px; display: inline-block; text-transform: uppercase; margin-top: 16px; }

/* ===== CARD 19: Comparison Card ===== */
.c19 {
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c19 h2 { font-size: 24px; font-weight: 700; color: #111; margin-bottom: 20px; text-align: center; }
.c19 .vs-row { display: flex; gap: 12px; align-items: stretch; }
.c19 .side { flex: 1; padding: 16px; border-radius: 8px; }
.c19 .side.bad { background: #fff1f0; border: 1px solid #ffd0cc; }
.c19 .side.good { background: #f0fdf4; border: 1px solid #bbf7d0; }
.c19 .side-label { font-size: 15px; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; text-transform: uppercase; }
.c19 .side.bad .side-label { color: #ef4444; }
.c19 .side.good .side-label { color: #22c55e; }
.c19 .vs-divider { display: flex; align-items: center; justify-content: center; width: 28px; font-size: 16px; font-weight: 700; color: #888; }
.c19 .point { font-size: 16px; color: #555; line-height: 1.6; margin-bottom: 6px; padding-left: 14px; position: relative; }
.c19 .point::before { content: '·'; position: absolute; left: 4px; }

/* ===== CARD 20: Isometric Style ===== */
.c20 {
  background: #1e1b4b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.c20 .bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(99,102,241,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.1) 1px, transparent 1px); background-size: 30px 30px; }
.c20 .badge { background: #6366f1; color: #fff; font-size: 14px; padding: 4px 10px; letter-spacing: 2px; text-transform: uppercase; display: inline-block; margin-bottom: 16px; position: relative; z-index: 1; }
.c20 h2 { font-family: 'Syne', sans-serif; font-size: 45px; color: #fff; font-weight: 800; line-height: 1.2; margin-bottom: 10px; position: relative; z-index: 1; }
.c20 p { font-size: 16px; color: rgba(165,180,252,0.8); line-height: 1.7; position: relative; z-index: 1; }

/* ===== CARD 21: Warm Yellow ===== */
.c21 {
  background: #fef3c7;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.c21 .blob { position: absolute; width: 200px; height: 200px; background: #fbbf24; border-radius: 50%; right: -60px; top: -60px; opacity: 0.4; }
.c21 .step { font-size: 15px; color: #92400e; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; position: relative; z-index: 1; }
.c21 h2 { font-family: 'DM Serif Display', 'Noto Serif KR', serif; font-size: 48px; color: #1c1008; line-height: 1.2; margin-bottom: 14px; position: relative; z-index: 1; }
.c21 p { font-size: 18px; color: #78350f; line-height: 1.8; position: relative; z-index: 1; }
.c21 .line { width: 40px; height: 3px; background: #f59e0b; margin-top: 20px; position: relative; z-index: 1; }

/* ===== CARD 22: Dark Tutorial ===== */
.c22 {
  background: #161b22;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c22 .file-header { background: #21262d; border-radius: 6px 6px 0 0; padding: 8px 14px; display: flex; gap: 6px; align-items: center; }
.c22 .dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.c22 .dot-y { width: 10px; height: 10px; border-radius: 50%; background: #febc2e; }
.c22 .dot-g { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }
.c22 .code-block { background: #0d1117; border-radius: 0 0 6px 6px; padding: 16px; }
.c22 .code-line { font-family: 'Space Mono', monospace; font-size: 16px; line-height: 1.8; }
.c22 .kw { color: #ff7b72; }
.c22 .fn { color: #d2a8ff; }
.c22 .str { color: #a5d6ff; }
.c22 .cm { color: #8b949e; }
.c22 .title { font-size: 16px; color: #58a6ff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }

/* ===== CARD 23: Motivational Bold ===== */
.c23 {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  position: relative;
}
.c23::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #f59e0b, #ef4444, #ec4899, #8b5cf6); }
.c23 .small { font-size: 15px; color: #aaa; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.c23 h2 { font-family: 'Fraunces', 'Noto Serif KR', serif; font-size: 60px; color: #111; line-height: 1.1; margin-bottom: 16px; }
.c23 h2 em { font-style: italic; color: #ef4444; }
.c23 p { font-size: 18px; color: #666; line-height: 1.8; max-width: 80%; }

/* ===== CARD 24: Infographic Pie ===== */
.c24 {
  background: #f8fafc;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e2e8f0;
}
.c24 h2 { font-size: 22px; font-weight: 700; color: #1e293b; margin-bottom: 20px; }
.c24 .chart-area { display: flex; align-items: center; gap: 20px; }
.c24 .donut { width: 90px; height: 90px; border-radius: 50%; background: conic-gradient(#6366f1 0% 45%, #f59e0b 45% 70%, #10b981 70% 88%, #e2e8f0 88% 100%); flex-shrink: 0; position: relative; }
.c24 .donut::after { content: ''; position: absolute; width: 54px; height: 54px; background: #f8fafc; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.c24 .legend { display: flex; flex-direction: column; gap: 8px; }
.c24 .leg-item { display: flex; align-items: center; gap: 8px; }
.c24 .leg-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.c24 .leg-text { font-size: 16px; color: #475569; }
.c24 .leg-val { font-size: 16px; font-weight: 700; color: #1e293b; margin-left: auto; }

/* ===== CARD 25: Grainy Gradient ===== */
.c25 {
  background: linear-gradient(135deg, #1a0533, #0f172a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.c25::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"); opacity: 0.6; }
.c25 .accent { font-size: 15px; color: #c084fc; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; position: relative; }
.c25 h2 { font-family: 'Syne', sans-serif; font-size: 48px; color: #fff; font-weight: 800; line-height: 1.2; margin-bottom: 14px; position: relative; }
.c25 h2 span { background: linear-gradient(90deg, #c084fc, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.c25 p { font-size: 18px; color: rgba(200,180,255,0.65); line-height: 1.8; position: relative; }

/* ===== CARD 26: Clean Numbered List ===== */
.c26 {
  background: #fff7ed;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c26 h2 { font-size: 26px; font-weight: 700; color: #431407; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #fed7aa; }
.c26 .list-item { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid #ffedd5; }
.c26 .list-item:last-child { border-bottom: none; }
.c26 .n { font-family: 'Cormorant Garamond', 'Noto Serif KR', serif; font-size: 42px; color: #fb923c; font-weight: 700; line-height: 1; width: 28px; flex-shrink: 0; }
.c26 .content h3 { font-size: 20px; font-weight: 700; color: #431407; margin-bottom: 2px; }
.c26 .content p { font-size: 16px; color: #7c4a20; line-height: 1.5; }

/* ===== CARD 27: Swiss/International Style ===== */
.c27 {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border: 2px solid #000;
}
.c27 .q1 { background: #e63946; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 2px solid #000; border-bottom: 2px solid #000; }
.c27 .q1 span { font-family: 'Bebas Neue', sans-serif; font-size: 90px; color: #fff; line-height: 1; }
.c27 .q1 p { font-size: 15px; color: rgba(255,255,255,0.8); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.c27 .q2 { padding: 24px; display: flex; flex-direction: column; justify-content: center; border-bottom: 2px solid #000; }
.c27 .q2 h3 { font-size: 24px; font-weight: 700; color: #000; line-height: 1.3; }
.c27 .q3 { background: #000; padding: 24px; border-right: 2px solid #000; display: flex; align-items: center; justify-content: center; }
.c27 .q3 span { font-size: 15px; color: #fff; letter-spacing: 3px; text-transform: uppercase; writing-mode: vertical-rl; }
.c27 .q4 { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.c27 .q4 p { font-size: 16px; color: #333; line-height: 1.7; }

/* ===== CARD 28: Soft Blue Professional ===== */
.c28 {
  background: linear-gradient(160deg, #dbeafe, #eff6ff);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c28 .icon-area { width: 60px; height: 60px; background: #3b82f6; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 42px; margin-bottom: 20px; }
.c28 h2 { font-size: 36px; font-weight: 700; color: #1e3a8a; line-height: 1.3; margin-bottom: 12px; }
.c28 p { font-size: 18px; color: #3b5998; line-height: 1.8; }
.c28 .tags { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.c28 .t { background: rgba(59,130,246,0.15); color: #1d4ed8; font-size: 15px; padding: 4px 10px; border-radius: 4px; font-weight: 500; }

/* ===== CARD 29: Before/After ===== */
.c29 { display: flex; flex-direction: column; }
.c29 .top { flex: 1; background: #1f1f1f; padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; border-bottom: 4px solid #f59e0b; }
.c29 .top .l { font-size: 14px; color: #666; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.c29 .top p { font-size: 20px; color: #aaa; line-height: 1.6; text-decoration: line-through; text-decoration-color: #555; }
.c29 .bottom { flex: 1; background: #fff; padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.c29 .bottom .l { font-size: 14px; color: #f59e0b; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.c29 .bottom p { font-size: 20px; color: #111; line-height: 1.6; font-weight: 500; }

/* ===== CARD 30: Cover/Title Card ===== */
.c30 {
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.c30::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(251,191,36,0.15), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.c30 .series { font-family: 'Space Mono', monospace; font-size: 14px; color: #f59e0b; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; }
.c30 h2 { font-family: 'Fraunces', 'Noto Serif KR', serif; font-size: 57px; color: #fff; line-height: 1.1; margin-bottom: 16px; position: relative; }
.c30 h2 em { color: #fbbf24; font-style: italic; }
.c30 .sub { font-size: 16px; color: #666; line-height: 1.8; max-width: 75%; position: relative; }
.c30 .profile { display: flex; align-items: center; gap: 10px; margin-top: 28px; position: relative; }
.c30 .av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #f59e0b, #ef4444); }
.c30 .pname { font-size: 15px; color: #999; text-align: left; }
.c30 .pname strong { display: block; color: #ddd; font-size: 16px; }


/* ==========================================================================
   EXPERIMENTAL CARDS (31-40)
   ========================================================================== */

/* ===== CARD 31: Glitch ===== */
.c31 {
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}
.c31 .scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.03) 3px, rgba(255,255,255,0.03) 4px);
  pointer-events: none;
  z-index: 2;
}
.c31 .glitch-wrap { position: relative; display: inline-block; }
.c31 .glitch-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 84px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  position: relative;
  display: block;
  letter-spacing: -2px;
}
.c31 .ghost-cyan {
  position: absolute;
  top: 0; left: -5px;
  font-family: 'Unbounded', sans-serif;
  font-size: 84px;
  font-weight: 900;
  color: #0ff;
  opacity: 0.6;
  line-height: 1;
  letter-spacing: -2px;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  pointer-events: none;
}
.c31 .ghost-mag {
  position: absolute;
  top: 0; left: 5px;
  font-family: 'Unbounded', sans-serif;
  font-size: 84px;
  font-weight: 900;
  color: #f0f;
  opacity: 0.6;
  line-height: 1;
  letter-spacing: -2px;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  pointer-events: none;
}
.c31 .bar1 { position: absolute; left: 0; right: 0; height: 3px; background: #f0f; top: 32%; opacity: 0.7; }
.c31 .bar2 { position: absolute; left: 0; right: 0; height: 2px; background: #0ff; top: 68%; opacity: 0.5; }
.c31 .slice { position: absolute; left: 0; right: 0; height: 6px; background: #000; top: 45%; transform: translateX(8px); }
.c31 .sub-text {
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  color: #0ff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}
.c31 .sub-text::after { content: '█'; color: #0ff; margin-left: 4px; }
.c31 .noise-stripe {
  position: absolute;
  top: 18%;
  left: 0; right: 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 4px, rgba(0,255,255,0.15) 4px, rgba(0,255,255,0.15) 5px);
}

/* ===== CARD 32: Vaporwave ===== */
.c32 {
  background: #1a0030;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.c32::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0d001a 0%, #1a0030 30%, #4b0082 50%, #ff4fa3 70%, #ff8c42 85%, #ffb347 100%);
}
.c32 .stars {
  position: absolute;
  top: 0; left: 0; right: 0; height: 48%;
  background-image:
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px),
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 100% 100%;
  background-position: 12% 15%, 80% 20%, 45% 8%, 65% 25%, 28% 30%, 55% 12%, 90% 10%;
  background-repeat: no-repeat;
}
.c32 .sun {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb347 0%, #ff4fa3 50%, transparent 50%);
  top: 55px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 60px rgba(255,180,100,0.5);
}
.c32 .sun::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(180deg, transparent 0px, transparent 11px, #1a0030 11px, #1a0030 14px);
  clip-path: polygon(0 52%, 100% 52%, 100% 100%, 0 100%);
}
.c32 .grid-floor {
  position: absolute;
  bottom: 0; left: -30%; right: -30%;
  height: 48%;
  background:
    linear-gradient(rgba(255,80,180,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,80,180,0.6) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(180px) rotateX(62deg);
  transform-origin: bottom center;
  z-index: 2;
}
.c32 .content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 18px 28px 0;
  width: 100%;
}
.c32 .title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(180deg, #fff 0%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  line-height: 1.2;
  filter: drop-shadow(0 0 16px rgba(255,110,199,0.9));
}
.c32 .sub {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: #0ff;
  letter-spacing: 4px;
  margin-top: 8px;
  text-shadow: 0 0 8px #0ff;
}

/* ===== CARD 33: Glassmorphism ===== */
.c33 {
  background: linear-gradient(135deg, #667eea 0%, #f093fb 40%, #f5576c 70%, #4facfe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.c33 .glass {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 32px 28px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
}
.c33 .glass .num {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.c33 .glass h2 {
  font-family: 'DM Serif Display', 'Noto Serif KR', serif;
  font-size: 42px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.c33 .glass p { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.8; }
.c33 .glass .pills { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.c33 .glass .pill {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.38);
  color: #fff;
  font-size: 15px;
  padding: 5px 13px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ===== CARD 34: Risograph ===== */
.c34 {
  background: #f5f0e0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  overflow: hidden;
}
.c34 .riso-blob1 { position: absolute; width: 280px; height: 280px; background: #f7941d; border-radius: 50%; top: -80px; right: -80px; mix-blend-mode: multiply; opacity: 0.9; }
.c34 .riso-blob2 { position: absolute; width: 220px; height: 220px; background: #00a8e0; border-radius: 50%; bottom: -60px; left: -60px; mix-blend-mode: multiply; opacity: 0.9; }
.c34 .riso-blob3 { position: absolute; width: 160px; height: 160px; background: #ff3366; border-radius: 50%; top: 55px; left: 75px; mix-blend-mode: multiply; opacity: 0.55; }
.c34 .grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.09'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}
.c34 .content { position: relative; z-index: 3; }
.c34 .stamp { border: 3px solid #1a1a1a; display: inline-block; padding: 3px 10px; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: #1a1a1a; margin-bottom: 16px; font-weight: 700; }
.c34 h2 { font-family: 'Fraunces', 'Noto Serif KR', serif; font-size: 69px; color: #1a1a1a; line-height: 0.92; font-weight: 900; margin-bottom: 18px; }
.c34 p { font-size: 18px; color: #2a1a1a; line-height: 1.7; max-width: 68%; }

/* ===== CARD 35: Sticker Collage ===== */
.c35 {
  background: #fffef5;
  background-image: radial-gradient(circle, #ddd5c0 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.c35 .sticker { position: absolute; background: #fff; border-radius: 6px; padding: 6px 12px; font-size: 16px; font-weight: 700; box-shadow: 2px 3px 0 rgba(0,0,0,0.18); }
.c35 .s1 { top: 18px; left: 22px; transform: rotate(-8deg); background: #ffe066; color: #5a3e00; }
.c35 .s2 { top: 24px; right: 18px; transform: rotate(6deg); background: #ff8fab; color: #5a0020; font-size: 33px; padding: 6px 10px; }
.c35 .s3 { bottom: 22px; right: 24px; transform: rotate(-5deg); background: #a8e6cf; color: #1a4a30; }
.c35 .s4 { bottom: 18px; left: 18px; transform: rotate(9deg); background: #c9b1ff; color: #2d0060; }
.c35 .main-card { background: #fff; border-radius: 16px; padding: 26px 22px; text-align: center; box-shadow: 4px 6px 0 rgba(0,0,0,0.1); transform: rotate(-2deg); width: 78%; position: relative; z-index: 5; border: 2px solid #eee; }
.c35 .tape { position: absolute; width: 56px; height: 18px; background: rgba(255,240,150,0.65); border-left: 1px solid rgba(200,180,100,0.3); border-right: 1px solid rgba(200,180,100,0.3); top: -9px; left: 50%; transform: translateX(-50%); z-index: 6; }
.c35 .emoji { font-size: 66px; display: block; margin-bottom: 10px; }
.c35 .main-card h2 { font-size: 24px; font-weight: 900; color: #111; line-height: 1.2; margin-bottom: 8px; }
.c35 .main-card p { font-size: 16px; color: #666; line-height: 1.6; }

/* ===== CARD 36: Liquid Blob ===== */
.c36 {
  background: #0a0a14;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.c36 .blob-main { position: absolute; width: 320px; height: 320px; background: linear-gradient(135deg, #6c63ff, #3ecfcf); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; opacity: 0.22; top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(2px); }
.c36 .blob-2 { position: absolute; width: 200px; height: 200px; background: linear-gradient(135deg, #f093fb, #6c63ff); border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; opacity: 0.18; top: 28%; left: 58%; transform: translate(-50%, -50%); filter: blur(12px); }
.c36 .content { position: relative; z-index: 1; }
.c36 .tag { font-family: 'Space Mono', monospace; font-size: 14px; color: #a78bfa; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; }
.c36 h2 { font-family: 'Instrument Serif', 'Noto Serif KR', serif; font-size: 54px; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.c36 h2 em { font-style: italic; color: #a78bfa; }
.c36 p { font-size: 18px; color: rgba(200,190,255,0.7); line-height: 1.8; }

/* ===== CARD 37: Terminal ===== */
.c37 {
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.c37 .matrix-bg { position: absolute; inset: 0; overflow: hidden; opacity: 0.1; background-image: repeating-linear-gradient(180deg, transparent 0px, transparent 13px, rgba(0,255,0,0.4) 13px, rgba(0,255,0,0.4) 14px); background-size: 18px 100%; }
.c37 .terminal { position: relative; z-index: 1; }
.c37 .title-row { font-family: 'Space Mono', monospace; font-size: 15px; color: #0f0; letter-spacing: 2px; margin-bottom: 14px; border-bottom: 1px solid #0f04; padding-bottom: 10px; }
.c37 .prompt-line { font-family: 'Space Mono', monospace; font-size: 16px; color: #0f0; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.c37 .prompt-line::before { content: '▶'; }
.c37 .cursor-block { display: inline-block; width: 8px; height: 14px; background: #0f0; margin-left: 3px; vertical-align: text-bottom; }
.c37 .big-output { font-family: 'Space Mono', monospace; font-size: 42px; font-weight: 700; color: #0f0; margin: 14px 0 10px; text-shadow: 0 0 12px rgba(0,255,0,0.6); line-height: 1; }
.c37 .out-line { font-family: 'Space Mono', monospace; font-size: 16px; line-height: 1.7; margin-bottom: 2px; }
.c37 .out-line.g { color: #0f0; }
.c37 .out-line.y { color: #ff0; }
.c37 .out-line.c { color: #0ff; }

/* ===== CARD 38: Layered Typography ===== */
.c38 {
  background: #f5f0eb;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c38 .bg-word { position: absolute; font-family: 'Unbounded', sans-serif; font-size: 195px; font-weight: 900; color: rgba(0,0,0,0.05); white-space: nowrap; letter-spacing: -5px; user-select: none; line-height: 1; }
.c38 .bg-word:nth-child(1) { top: -10px; left: -20px; }
.c38 .bg-word:nth-child(2) { bottom: -10px; right: -20px; }
.c38 .content { position: relative; z-index: 1; padding: 32px 36px; width: 100%; }
.c38 .label-top { font-size: 14px; letter-spacing: 4px; text-transform: uppercase; color: #999; margin-bottom: 14px; }
.c38 h2 { font-family: 'Instrument Serif', 'Noto Serif KR', serif; font-size: 54px; color: #111; line-height: 1.1; margin-bottom: 12px; }
.c38 h2 span { font-style: italic; color: #c0392b; }
.c38 .divider { width: 100%; height: 1.5px; background: #111; margin: 14px 0; }
.c38 p { font-size: 16px; color: #555; line-height: 1.7; }
.c38 .meta { display: flex; justify-content: space-between; margin-top: 14px; font-size: 14px; color: #aaa; letter-spacing: 2px; text-transform: uppercase; }

/* ===== CARD 39: Bauhaus ===== */
.c39 {
  background: #f0ebe0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.c39 .shapes { position: absolute; inset: 0; }
.c39 .shape-circle { position: absolute; width: 240px; height: 240px; background: #e63946; border-radius: 50%; top: -65px; right: -65px; }
.c39 .shape-half { position: absolute; width: 160px; height: 80px; background: #1d3557; border-radius: 0 0 80px 80px; bottom: 58px; left: -22px; }
.c39 .shape-tri { position: absolute; width: 0; height: 0; border-left: 55px solid transparent; border-right: 55px solid transparent; border-bottom: 95px solid #f4a261; bottom: 48px; right: 48px; }
.c39 .shape-rect { position: absolute; width: 60px; height: 120px; background: #2ec4b6; bottom: 0; left: 118px; }
.c39 .content { position: relative; z-index: 1; padding: 30px 30px; }
.c39 .brand { font-family: 'Unbounded', sans-serif; font-size: 14px; color: #1d3557; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; }
.c39 h2 { font-family: 'Unbounded', sans-serif; font-size: 39px; font-weight: 900; color: #1d3557; line-height: 1.1; }
.c39 .bottom-bar { position: relative; z-index: 1; background: #1d3557; padding: 14px 30px; display: flex; justify-content: space-between; align-items: center; }
.c39 .bottom-bar span { font-family: 'Space Mono', monospace; font-size: 15px; color: rgba(255,255,255,0.55); letter-spacing: 2px; }
.c39 .bottom-bar strong { font-size: 15px; color: #fff; letter-spacing: 1px; }

/* ===== CARD 40: Marquee Editorial ===== */
.c40 {
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.c40 .ticker { width: 100%; background: #fff; padding: 10px 0; overflow: hidden; white-space: nowrap; }
.c40 .ticker.alt { background: #e63946; }
.c40 .ticker-inner { display: inline-block; font-family: 'Bebas Neue', sans-serif; font-size: 33px; letter-spacing: 2px; color: #111; padding: 0 16px; }
.c40 .ticker.alt .ticker-inner { color: #fff; }
.c40 .main { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; }
.c40 .num-badge { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 2px solid #e63946; border-radius: 50%; font-family: 'Space Mono', monospace; font-size: 20px; color: #e63946; font-weight: 700; margin-bottom: 14px; }
.c40 h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.c40 p { font-size: 16px; color: #666; line-height: 1.7; }
