    @import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Mochiy+Pop+One&family=Noto+Sans+JP:wght@400;700;900&family=Outfit:wght@600;900&display=swap');

    /* CMS Page Loader & Default Style rules */
    article>* {
      opacity: 0;
      transition: opacity var(--transition-default);
    }

    [data-page-loaded="true"] article>* {
      opacity: 1;
    }

    @media (min-width: 1024px) {
      article {
        padding-top: min(4.375rem, 70px);
        padding-bottom: min(4.375rem, 70px);
        background: var(--color-bg-primary);
      }
    }

    .borderline {
      border-bottom: 3px solid #efb201;
      font-size: 0rem;
      margin: 1rem auto;
    }

    /* --- BUNDLED STYLESHEET (style.css) --- */

    /* Style Tokens & Variables */
    .macho-card-logo {
      height: 1.2em;
      vertical-align: middle;
      margin-left: 4px;
    }

    .main-container {
      --color-primary: #ffd600;
      /* Sunshine Yellow */
      --color-secondary: #ff5722;
      /* Hot Orange */
      --color-accent: #00bcd4;
      /* Tropical Turquoise */
      --color-bg-dark: #00423c;
      /* Deep Beach Green (from template) */
      --color-bg-light: #fbe9e7;
      /* Soft Warm Cream */
      --color-border: #000000;
      /* Thick Comic Outline */
      --color-text: #00423c;
      --font-title: 'Mochiy Pop One', sans-serif;
      --font-logo: 'Dela Gothic One', sans-serif;
      --font-body: 'Noto Sans JP', sans-serif;
      --comic-border: 4px solid var(--color-border);
      --comic-shadow: 6px 6px 0px rgba(0, 0, 0, 1);
      --comic-shadow-hover: 10px 10px 0px rgba(0, 0, 0, 1);
    }

    /* Global Reset & Base Styles scoped to .main-container */
    .main-container * {
      box-sizing: border-box;
    }

    /* Main Container with dot background pattern */
    .main-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      font-family: var(--font-body);
      background-color: #f7eedc;
      background-image: radial-gradient(#efb201 1.5px, transparent 1.5px), radial-gradient(#efb201 1.5px, #f7eedc 1.5px);
      background-size: 40px 40px;
      background-position: 0 0, 20px 20px;
      color: #111;
      line-height: 1.6;
      padding-bottom: 50px;
    }

    /* Typography scoped to .main-container */
    .main-container h1,
    .main-container h2,
    .main-container h3,
    .main-container h4 {
      font-family: var(--font-title);
      color: var(--color-border);
      text-shadow: 3px 3px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 3px 3px 0 var(--color-border);
      letter-spacing: 0.05em;
    }

    .main-container p {
      font-weight: 500;
    }

    /* Hero Section */
    .hero {
      position: relative;
      background: linear-gradient(135deg, var(--color-primary), #ff9800);
      border: var(--comic-border);
      box-shadow: var(--comic-shadow);
      border-radius: 20px;
      margin: 40px auto 20px;
      padding: 40px 20px;
      text-align: center;
      overflow: hidden;
    }

    /* Sunray background effect inside hero */
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.15) 0deg 15deg, transparent 15deg 30deg);
      animation: rotateSun 60s linear infinite;
      z-index: 1;
      pointer-events: none;
    }

    @keyframes rotateSun {
      100% {
        transform: rotate(360deg);
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-subtitle-top-wrapper {
      display: block;
      margin-bottom: 25px;
      animation: wiggleBadge 4s ease-in-out infinite alternate;
    }

    .hero-subtitle-top {
      font-family: var(--font-title);
      font-size: 2.2rem;
      background-color: var(--color-secondary);
      color: #fff;
      display: inline-block;
      padding: 8px 24px;
      border: var(--comic-border);
      box-shadow: 6px 6px 0 #000;
      text-shadow: 2px 2px 0 #000;
      transform: rotate(-3deg);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, color 0.3s, box-shadow 0.3s, text-shadow 0.3s;
      cursor: pointer;
    }

    .hero-subtitle-top:hover {
      transform: scale(1.15) rotate(-6deg);
      background-color: var(--color-primary);
      color: #000;
      box-shadow: 10px 10px 0 #000;
      text-shadow: 2px 2px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    }

    .hero-subtitle-top:active {
      transform: scale(0.95) rotate(0deg);
      box-shadow: 3px 3px 0 #000;
    }

    @keyframes wiggleBadge {
      0% {
        transform: translateY(0px) rotate(1deg);
      }

      100% {
        transform: translateY(-4px) rotate(-1deg);
      }
    }

    .hero-main-visual-wrapper {
      position: relative;
      display: block;
      width: 100%;
      max-width: 650px;
      margin: 0 auto 20px;
      animation: floatVisual 5s ease-in-out infinite alternate;
    }

    .hero-main-visual-container {
      width: 100%;
      border: var(--comic-border);
      box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
      border-radius: 20px;
      overflow: hidden;
      background-color: #fff;
      display: block;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
      cursor: pointer;
      position: relative;
      z-index: 2;
    }

    .hero-main-visual-container:hover {
      transform: scale(1.06) rotate(-2deg);
      box-shadow: 20px 20px 0px rgba(0, 0, 0, 1);
    }

    .hero-main-visual-container:active {
      transform: scale(0.96) rotate(1deg);
      box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
    }

    .hero-main-visual {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Playful decorations wrappers (handles float animation) */
    .decor-wrapper {
      position: absolute;
      z-index: 3;
      pointer-events: none;
    }

    .decor-left {
      left: -35px;
      top: 20%;
      animation: bounceLeft 3s ease-in-out infinite alternate;
    }

    .decor-right {
      right: -35px;
      bottom: 20%;
      animation: bounceRight 3.5s ease-in-out infinite alternate;
    }

    /* Playful decorations (handles hover pop-out and base rotation) */
    .hero-main-visual-decor {
      font-size: 3rem;
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
      filter: drop-shadow(3px 3px 0px #000);
    }

    .decor-left .hero-main-visual-decor {
      transform: rotate(-15deg);
    }

    .decor-right .hero-main-visual-decor {
      transform: rotate(15deg);
    }

    /* Hover interaction pops out decorations */
    .hero-main-visual-wrapper:hover .decor-left .hero-main-visual-decor {
      transform: translate(-20px, -15px) scale(1.4) rotate(-35deg);
    }

    .hero-main-visual-wrapper:hover .decor-right .hero-main-visual-decor {
      transform: translate(20px, 15px) scale(1.4) rotate(35deg);
    }

    @keyframes floatVisual {
      0% {
        transform: translateY(0px) rotate(1deg);
      }

      100% {
        transform: translateY(-12px) rotate(-1deg);
      }
    }

    @keyframes bounceLeft {
      0% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(-8px);
      }
    }

    @keyframes bounceRight {
      0% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(-6px);
      }
    }

    .hero-date-badge {
      font-family: var(--font-title);
      background-color: var(--color-accent);
      color: #fff;
      display: inline-block;
      padding: 12px 32px;
      border: var(--comic-border);
      box-shadow: 6px 6px 0 #000;
      font-size: 1.5rem;
      transform: rotate(2deg);
      margin-top: 15px;
      text-shadow: 2px 2px 0 #000;
    }

    @media (max-width: 600px) {
      .hero-main-visual-decor {
        font-size: 2.2rem;
      }

      .decor-left {
        left: -15px;
      }

      .decor-right {
        right: -15px;
      }

      .hero-subtitle-top {
        font-size: 1.4rem;
        padding: 6px 16px;
        box-shadow: 4px 4px 0 #000;
      }

      .hero-subtitle-top-wrapper {
        margin-bottom: 15px;
      }

      .hero-date-badge {
        font-size: 1.1rem;
        padding: 8px 16px;
        box-shadow: 4px 4px 0 #000;
      }
    }

    /* Comic Sections */
    .comic-section {
      background-color: #fff;
      border: var(--comic-border);
      box-shadow: var(--comic-shadow);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 40px;
      position: relative;
    }

    .section-title-tag {
      position: absolute;
      top: -20px;
      left: 20px;
      background-color: var(--color-secondary);
      color: #fff;
      font-family: var(--font-title);
      padding: 6px 20px;
      border: var(--comic-border);
      box-shadow: 4px 4px 0 #000;
      transform: rotate(-1deg);
      font-size: 1.4rem;
      text-shadow: 2px 2px 0 #000;
      margin: 0;
    }

    .section-content {
      margin-top: 15px;
    }

    /* Intro Section Speech Bubble */
    .intro-bubble {
      position: relative;
      background-color: #fff3e0;
      border: 3px solid var(--color-border);
      border-radius: 15px;
      padding: 20px;
      margin: 20px 0;
      box-shadow: 4px 4px 0 #000;
    }

    .intro-bubble p {
      font-size: 1.1rem;
      color: var(--color-text);
      font-weight: bold;
    }

    /* Muscle Poses Guide List */
    .pose-guide-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-top: 20px;
    }

    .pose-card {
      border: 3px solid var(--color-border);
      border-radius: 15px;
      padding: 20px 15px;
      text-align: center;
      box-shadow: 4px 4px 0 #000;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .pose-card:hover {
      transform: translateY(-6px);
      box-shadow: 8px 8px 0 #000;
    }

    .pose-card.card-gu {
      background-color: #ffe082;
      /* Warm Yellow */
    }

    .pose-card.card-cyoki {
      background-color: #e0f2f1;
      /* Soft Turquoise / Teal */
    }

    .pose-card.card-pa {
      background-color: #ffccbc;
      /* Soft Warm Coral */
    }

    .pose-img-frame {
      width: 130px;
      height: 130px;
      background-color: #fff;
      border: 2px solid #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      box-shadow: 2px 2px 0 #000;
      transition: transform 0.3s ease;
    }

    .pose-card:hover .pose-img-frame {
      transform: scale(1.1) rotate(5deg);
    }

    .pose-img-frame img {
      width: 80%;
      height: 80%;
      object-fit: contain;
    }

    .pose-icon-badge {
      background-color: #000;
      color: #fff;
      font-size: 1rem;
      padding: 2px 8px;
      border-radius: 4px;
      margin-bottom: 8px;
      font-family: var(--font-title);
    }

    .pose-name {
      font-family: var(--font-title);
      font-size: 1.1rem;
      color: var(--color-border);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .pose-beats {
      font-size: 0.95rem;
      font-weight: 900;
      color: var(--color-secondary);
      margin-bottom: 10px;
      background-color: rgba(255, 255, 255, 0.7);
      border: 1.5px solid #000;
      border-radius: 20px;
      padding: 1px 12px;
      display: inline-block;
      box-shadow: 1.5px 1.5px 0 #000;
    }

    /* Participant Grid */
    .macho-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    /* Responsive Grid */
    @media (max-width: 850px) {
      .macho-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 550px) {
      .macho-grid {
        grid-template-columns: 1fr;
      }

      .pose-guide-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Guest Macho Intro Section Banner styling */
    .macho-intro-header {
      background: linear-gradient(135deg, #fff9c4, #ffe082);
      border: 3px solid #000;
      border-radius: 15px;
      padding: 40px 25px;
      margin-bottom: 30px;
      text-align: center;
      box-shadow: 4px 4px 0 #000;
      position: relative;
      overflow: hidden;
    }

    .macho-intro-header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('/Contents/FeaturePage/pumpmen_logo.png');
      background-size: 95%;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.11;
      /* Balanced transparency for readability and visibility */
      z-index: 1;
      pointer-events: none;
    }

    .macho-intro-logo-wrap {
      max-width: 600px;
      margin: 0 auto 15px;
      position: relative;
      z-index: 2;
    }

    .macho-intro-logo {
      width: 100%;
      height: auto;
      transform: rotate(-2deg);
      filter: drop-shadow(3px 3px 0 #000);
      animation: pulseLogo 3s ease-in-out infinite alternate;
    }

    @keyframes pulseLogo {
      0% {
        transform: scale(0.98) rotate(-2deg);
      }

      100% {
        transform: scale(1.02) rotate(1deg);
      }
    }

    .macho-intro-tagline {
      font-family: var(--font-title);
      font-size: 1.25rem;
      color: var(--color-secondary);
      margin-bottom: 12px;
      text-shadow: 1px 1px 0 #fff;
      z-index: 2;
      position: relative;
    }

    .macho-intro-text {
      font-size: 0.95rem;
      font-weight: 900;
      color: var(--color-bg-dark);
      line-height: 1.5;
      z-index: 2;
      position: relative;
    }

    /* Macho Card Styling */
    .macho-card {
      background-color: #fff;
      border: var(--comic-border);
      box-shadow: var(--comic-shadow);
      border-radius: 15px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
      position: relative;
    }

    .macho-card:hover {
      transform: translate(-4px, -4px);
      box-shadow: var(--comic-shadow-hover);
      background: linear-gradient(to bottom, #fff, #fffde7);
    }

    .macho-card-header {
      background-color: var(--color-primary);
      border-bottom: var(--comic-border);
      padding: 15px 12px;
      text-align: center;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .macho-card-num {
      font-family: var(--font-title);
      font-size: 0.8rem;
      color: #fff;
      background-color: var(--color-secondary);
      border: 1.5px solid #000;
      border-radius: 4px;
      padding: 1px 6px;
      transform: rotate(-2deg);
      text-shadow: 1px 1px 0 #000;
      box-shadow: 1px 1px 0 #000;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .macho-badge-logo {
      height: 14px;
      width: auto;
      margin-left: 4px;
      filter: drop-shadow(1px 1px 0 #000);
    }

    .macho-card-name {
      font-size: 1.45rem;
      /* Largest font inside header - high priority */
      margin: 2px 0;
      color: #000;
      font-family: var(--font-title);
      line-height: 1.2;
    }

    .macho-card-day {
      font-family: var(--font-title);
      font-size: 0.95rem;
      /* Highly visible size! */
      background-color: var(--color-accent);
      color: #fff;
      border: 2px solid #000;
      padding: 3px 14px;
      border-radius: 20px;
      /* Pill shape */
      text-shadow: 1.5px 1.5px 0 #000;
      box-shadow: 2px 2px 0 #000;
      transform: rotate(1deg);
      display: inline-block;
      margin-top: 2px;
    }

    .macho-photo-area {
      position: relative;
      width: 100%;
      height: 280px;
      background-color: #eee;
      border-bottom: var(--comic-border);
      overflow: hidden;
    }

    .macho-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
    }

    .macho-photo.hidden {
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      pointer-events: none;
    }

    /* Stamp Effect for Secret Photos */
    .secret-stamp {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-12deg);
      background-color: rgba(255, 0, 0, 0.85);
      color: #fff;
      font-family: var(--font-title);
      border: 4px double #fff;
      padding: 5px 15px;
      font-size: 1.5rem;
      white-space: nowrap;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      pointer-events: none;
      z-index: 10;
      text-shadow: 1px 1px 0 #000;
    }

    /* Tab Buttons container below macho-photo-area */
    .photo-tabs-container {
      display: flex;
      justify-content: center;
      gap: 12px;
      padding: 8px 10px;
      background-color: #fafafa;
      border-bottom: var(--comic-border);
    }

    .photo-tab-btn {
      background-color: #fff;
      color: #000;
      border: 2px solid #000;
      border-radius: 6px;
      padding: 3px 12px;
      font-family: var(--font-title);
      font-size: 0.8rem;
      cursor: pointer;
      transition: background-color 0.1s, transform 0.1s, box-shadow 0.1s;
      outline: none;
      box-shadow: 2px 2px 0 #000;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .photo-tab-btn:hover {
      background-color: var(--color-primary);
      transform: translateY(-1px);
      box-shadow: 3px 3px 0 #000;
    }

    .photo-tab-btn:active {
      transform: translateY(1px);
      box-shadow: 1px 1px 0 #000;
    }

    .photo-tab-btn.active {
      background-color: var(--color-secondary);
      color: #fff;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(1px);
      box-shadow: 1px 1px 0 #000;
    }

    .photo-tab-btn:active {
      transform: scale(0.95);
    }

    .macho-card-body {
      padding: 15px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      background-color: #fffcf4;
      border-bottom-left-radius: 11px;
      border-bottom-right-radius: 11px;
    }

    .macho-quote {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 900;
      color: var(--color-border);
      margin-bottom: 12px;
      min-height: 52px;
      display: flex;
      align-items: center;
      border-left: 3px solid var(--color-secondary);
      padding-left: 8px;
      line-height: 1.45;
      font-style: italic;
    }

    .macho-socials {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: auto;
      border-top: 2px dashed #ccc;
      padding-top: 15px;
    }

    .social-link-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 2.5px solid #000;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      cursor: pointer;
      box-shadow: 3px 3px 0 #000;
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s, background-color 0.15s;
    }

    .social-link-icon:hover {
      transform: translate(-3px, -3px);
      box-shadow: 5px 5px 0 #000;
    }

    .social-link-icon:active {
      transform: translate(2px, 2px);
      box-shadow: 0 0 0 #000;
    }

    .social-link-icon.insta:hover {
      background-color: #ffeef2;
      border-color: #e1306c;
      box-shadow: 5px 5px 0 #e1306c;
    }

    .social-link-icon.youtube:hover {
      background-color: #ffebee;
      border-color: #ff0000;
      box-shadow: 5px 5px 0 #ff0000;
    }

    .social-link-icon.line:hover {
      background-color: #e8f5e9;
      border-color: #06c755;
      box-shadow: 5px 5px 0 #06c755;
    }

    .social-link-icon.threads:hover {
      background-color: #eceff1;
      border-color: #000;
      box-shadow: 5px 5px 0 #000;
    }

    .social-link-icon-img {
      width: 32px;
      height: 32px;
      object-fit: contain;
      display: block;
    }

    /* Rules Checklist */
    .checklist-container {
      background-color: #e0f2f1;
      border: 3px solid var(--color-border);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 25px;
      box-shadow: 4px 4px 0 #000;
    }

    .checklist-list {
      list-style-type: none;
    }

    .checklist-list li {
      font-size: 1.05rem;
      font-weight: bold;
      padding: 8px 0;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      border-bottom: 1px dashed rgba(0, 66, 60, 0.2);
    }

    .checklist-list li::before {
      content: '💪';
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .checklist-list li:last-child {
      border-bottom: none;
    }

    /* Prizes section styling */
    .prize-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 20px;
    }

    @media (max-width: 700px) {
      .prize-container {
        grid-template-columns: 1fr;
      }
    }

    .prize-box {
      background: #fff;
      border: 3px solid #000;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 3px 3px 0 #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .prize-header {
      font-family: var(--font-title);
      background-color: var(--color-primary);
      border: 2px solid #000;
      padding: 4px 15px;
      border-radius: 5px;
      margin-bottom: 15px;
      font-size: 1.1rem;
      box-shadow: 2px 2px 0 #000;
      text-shadow: 1px 1px 0 #000;
      color: #fff;
    }

    .prize-header.special {
      background-color: var(--color-secondary);
    }

    .prize-item-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
    }

    .prize-item {
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px dashed #ccc;
      padding-bottom: 15px;
      text-align: left;
    }

    .prize-item.no-img {
      text-align: center;
      justify-content: center;
      padding: 10px 0 15px;
    }

    .prize-item.no-img .prize-details {
      width: 100%;
    }

    .prize-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .prize-img-frame {
      width: 110px;
      height: 110px;
      border: 2px solid #000;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 2px 2px 0 #000;
      flex-shrink: 0;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .prize-img-frame img {
      width: 92%;
      height: 92%;
      object-fit: contain;
    }

    .prize-img-no-frame {
      width: 110px;
      height: auto;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .prize-img-no-frame img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 480px) {
      .prize-img-no-frame {
        width: 80px;
      }
    }

    .prize-details h4 {
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .prize-details p {
      font-size: 0.85rem;
      color: #555;
      line-height: 1.4;
    }

    /* Special Prize (Super Muscle Chance) responsive layout */
    .special-prize-layout {
      display: flex;
      align-items: center;
      gap: 25px;
      margin-top: 15px;
      width: 100%;
    }

    .special-prize-img-frame {
      flex: 1;
      max-width: 200px;
      background-color: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      text-align: center;
      position: relative;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .special-prize-towel-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      transition: transform 0.2s ease;
    }

    .special-prize-img-frame:hover .special-prize-towel-img {
      transform: scale(1.05) rotate(-2deg);
    }

    .special-prize-img-label {
      display: block;
      margin-top: 12px;
      max-width: 100%;
      font-size: 0.72rem;
      font-weight: 900;
      color: #000;
      background: var(--color-primary);
      border: 2px solid #000;
      padding: 4px 8px;
      border-radius: 6px;
      box-shadow: 2px 2px 0 #000;
      line-height: 1.35;
      text-shadow: none;
      transform: rotate(-1.5deg);
      box-sizing: border-box;
    }

    .special-prize-info {
      flex: 1.5;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .special-prize-item {
      width: 100%;
    }

    /* Sponsor / LOST Surf Pants item card */
    .lost-pants-card {
      border: 3px solid #000;
      background-color: #fffde7;
      border-radius: 15px;
      padding: 20px;
      margin-top: 35px;
      box-shadow: 4px 4px 0 #000;
      display: flex;
      align-items: center;
      gap: 25px;
    }

    @media (max-width: 600px) {
      .lost-pants-card {
        flex-direction: column;
        text-align: center;
      }
    }

    .lost-pants-img-frame {
      position: relative;
      width: 200px;
      height: 200px;
      border: 2px solid #000;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 3px 3px 0 #000;
      flex-shrink: 0;
      background-color: #fff;
    }

    .lost-slider-wrapper {
      width: 100%;
      height: 100%;
      display: flex;
      transition: transform 0.3s ease-in-out;
    }

    .lost-slide {
      width: 200px;
      height: 200px;
      object-fit: contain;
      background-color: #fff;
      flex-shrink: 0;
    }

    .lost-slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.9);
      border: 2px solid #000;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 1px 1px 0 #000;
      transition: transform 0.1s, box-shadow 0.1s;
      z-index: 10;
    }

    .lost-slider-arrow:hover {
      background-color: var(--color-accent);
      color: #fff;
    }

    .lost-slider-arrow:active {
      transform: translateY(-50%) translate(1px, 1px);
      box-shadow: 0 0 0 #000;
    }

    .lost-arrow-prev {
      left: 6px;
    }

    .lost-arrow-next {
      right: 6px;
    }

    .lost-slider-dots {
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 4px;
      z-index: 10;
    }

    .lost-slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1px solid #000;
      background-color: #fff;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .lost-slider-dot.active {
      background-color: var(--color-secondary);
    }

    .lost-slider-badge {
      position: absolute;
      top: 6px;
      right: 6px;
      background-color: var(--color-accent);
      color: #fff;
      border: 1px solid #000;
      border-radius: 4px;
      padding: 2px 6px;
      font-size: 0.65rem;
      font-family: var(--font-title);
      text-shadow: 1px 1px 0 #000;
      z-index: 10;
      box-shadow: 1px 1px 0 #000;
    }

    .lost-pants-details {
      flex-grow: 1;
    }

    .lost-pants-badge {
      font-family: var(--font-title);
      background-color: var(--color-secondary);
      color: #fff;
      padding: 2px 8px;
      border-radius: 4px;
      border: 1px solid #000;
      font-size: 0.75rem;
      text-shadow: 1px 1px 0 #000;
      display: inline-block;
      margin-bottom: 8px;
    }

    .lost-pants-title {
      font-size: 1.15rem;
      margin-bottom: 8px;
    }

    .lost-pants-price {
      font-family: var(--font-title);
      font-size: 1.3rem;
      color: var(--color-secondary);
      text-shadow: none;
      margin-bottom: 12px;
    }

    .lost-pants-btn a {
      background-color: var(--color-accent);
      color: #fff;
      border: 2px solid #000;
      border-radius: 8px;
      padding: 8px 16px;
      font-family: var(--font-title);
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-block;
      box-shadow: 3px 3px 0 #000;
      text-shadow: 1px 1px 0 #000;
      transition: transform 0.1s, box-shadow 0.1s;
    }

    .lost-pants-btn a:hover {
      transform: translate(-2px, -2px);
      box-shadow: 5px 5px 0 #000;
    }

    .lost-pants-btn a:active {
      transform: translate(2px, 2px);
      box-shadow: 0 0 0 #000;
    }

    /* Event Detail Table styling */
    .details-table-wrapper {
      overflow-x: auto;
      border: 3px solid #000;
      border-radius: 12px;
      box-shadow: 4px 4px 0 #000;
      background-color: #fff;
      margin-top: 20px;
    }

    .details-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .details-table th,
    .details-table td {
      padding: 15px;
      border-bottom: 2px solid #000;
      font-weight: bold;
    }

    .details-table tr:last-child th,
    .details-table tr:last-child td {
      border-bottom: none;
    }

    .details-table th {
      background-color: var(--color-primary);
      width: 25%;
      font-family: var(--font-title);
      color: #000;
      border-right: 2px solid #000;
      font-size: 0.95rem;
    }

    .details-table td {
      color: var(--color-text);
      background-color: #fffcf4;
      font-size: 0.95rem;
    }

    /* Venue Section styling */
    .venue-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 20px;
    }

    .venue-map-frame {
      width: 100%;
      border: 3px solid #000;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 4px 4px 0 #000;
    }

    .venue-map-frame img {
      width: 100%;
      height: auto;
      display: block;
    }

    .venue-info-card {
      background-color: #fffcf4;
      border: 3px solid #000;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 3px 3px 0 #000;
    }

    .venue-info-card h4 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      border-bottom: 2px dashed #000;
      padding-bottom: 5px;
    }

    .venue-info-text {
      font-size: 0.95rem;
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .venue-info-text strong {
      color: var(--color-secondary);
    }

    /* Footer / CMS Button replacement */
    .cta-button-container {
      text-align: center;
      margin: 40px auto 10px;
    }

    .cta-button {
      display: inline-block;
      width: 100%;
      max-width: 500px;
    }

    .cta-button a {
      display: block;
      background-color: var(--color-primary);
      color: #000;
      font-family: var(--font-title);
      font-size: 1.4rem;
      text-decoration: none;
      padding: 20px 30px;
      border: var(--comic-border);
      border-radius: 50px;
      box-shadow: var(--comic-shadow);
      transition: transform 0.2s, box-shadow 0.2s;
      text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
      position: relative;
    }

    .cta-button a:hover {
      transform: translate(-4px, -4px);
      box-shadow: var(--comic-shadow-hover);
    }

    .cta-button a:active {
      transform: translate(2px, 2px);
      box-shadow: 0 0 0 #000;
    }

    .cta-button a::after {
      content: ' 💪';
      font-size: 1.4rem;
      display: inline-block;
      vertical-align: middle;
      margin-left: 5px;
    }

    /* Mobile Optimization for 1-column layouts on smartphones (max-width: 600px) */
    @media (max-width: 600px) {

      /* 1. Global Container Padding & Variable scale-down */
      .main-container {
        padding: 0 8px;
        --comic-border: 3px solid var(--color-border);
        --comic-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
        --comic-shadow-hover: 5px 5px 0px rgba(0, 0, 0, 1);
      }

      /* 2. PC-sized paddings reduction for main blocks */
      .comic-section {
        padding: 20px 12px;
        margin-bottom: 25px;
        border-radius: 12px;
      }

      .intro-bubble {
        padding: 15px 10px;
        margin: 15px 0;
        box-shadow: 2px 2px 0 #000;
        border: 2px solid var(--color-border);
      }

      .intro-bubble p {
        font-size: 0.95rem;
        line-height: 1.7;
      }

      .hero {
        padding: 25px 10px;
        margin: 20px auto 15px;
        border-radius: 12px;
      }

      /* 3. Shadow scale-down for various components to fit mobile screens */
      .hero-subtitle-top {
        box-shadow: 3px 3px 0 #000;
      }

      .section-title-tag {
        box-shadow: 2.5px 2.5px 0 #000;
        font-size: 1.15rem;
        padding: 4px 12px;
        top: -15px;
        left: 10px;
      }

      .pose-card {
        box-shadow: 2.5px 2.5px 0 #000;
      }

      .macho-intro-header {
        box-shadow: 2.5px 2.5px 0 #000;
        padding: 25px 15px;
      }

      .checklist-container {
        box-shadow: 2.5px 2.5px 0 #000;
        padding: 15px;
      }

      .prize-box {
        box-shadow: 2px 2px 0 #000;
        padding: 15px 10px;
      }

      .lost-pants-card {
        box-shadow: 2.5px 2.5px 0 #000;
        padding: 15px;
        gap: 15px;
      }

      .details-table-wrapper {
        box-shadow: 3px 3px 0 #000;
      }

      .venue-info-card {
        box-shadow: 2px 2px 0 #000;
        padding: 15px;
      }

      /* 6. Optimized Rules layout for mobile screens */
      .rule-step {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 12px;
        gap: 10px;
      }

      .rule-badge {
        font-size: 0.75rem;
        padding: 3px 6px;
        box-shadow: 1px 1px 0 #000;
      }

      .rule-title {
        font-size: 0.92rem;
      }

      .rule-desc {
        font-size: 0.82rem;
      }

      .special-rule-box {
        padding: 22px 12px 15px 12px;
        margin-top: 25px;
        box-shadow: 3px 3px 0 #000;
        border-width: 3px;
      }

      .special-splash-badge {
        font-size: 0.85rem;
        padding: 3px 10px;
        top: -15px;
        left: 10px;
      }

      .special-rule-title {
        font-size: 1.1rem;
      }

      .special-rule-desc {
        font-size: 0.85rem;
        padding: 3px 8px;
      }

      .special-rule-steps {
        font-size: 0.8rem;
        padding: 10px;
      }

      .macho-socials {
        gap: 15px;
        padding-top: 12px;
      }

      .cta-button a {
        font-size: 1.15rem;
        padding: 15px 20px;
      }

      .cta-button a::after {
        font-size: 1.15rem;
      }

      .special-prize-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 15px;
      }

      .special-prize-img-frame {
        max-width: 220px;
        width: 100%;
        padding: 0;
        margin: 0 auto;
      }

      .special-prize-towel-img {
        max-height: 220px;
      }

      .special-prize-info {
        width: 100%;
        gap: 12px;
      }

      /* Macho Chant Mobile */
      .macho-chant-container {
        margin-top: 20px;
        padding: 18px 10px;
      }

      .chant-row {
        flex-direction: column;
        gap: 4px;
      }

      .chant-text {
        font-size: 1.45rem;
      }

      .chant-role {
        font-size: 0.85rem;
      }
    }

    /* Event Rules Optimized (Step-by-step & special box) */
    .rules-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .rule-step {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      background-color: #fff;
      border: 2px solid #000;
      border-radius: 10px;
      padding: 12px 15px;
      box-shadow: 2px 2px 0 #000;
      text-align: left;
    }

    .rule-step:nth-child(1) .rule-badge {
      background-color: var(--color-primary);
      /* Yellow */
      color: #000;
      text-shadow: none;
    }

    .rule-step:nth-child(2) .rule-badge {
      background-color: var(--color-accent);
      /* Turquoise */
      color: #fff;
      text-shadow: 1px 1px 0 #000;
    }

    .rule-step:nth-child(3) .rule-badge {
      background-color: var(--color-secondary);
      /* Orange */
      color: #fff;
      text-shadow: 1px 1px 0 #000;
    }

    .rule-badge {
      border: 2px solid #000;
      border-radius: 5px;
      padding: 4px 10px;
      font-family: var(--font-title);
      font-weight: 900;
      font-size: 0.9rem;
      box-shadow: 2px 2px 0 #000;
      flex-shrink: 0;
      text-align: center;
    }

    .rule-text {
      flex-grow: 1;
    }

    .rule-title {
      font-family: var(--font-title);
      font-size: 1.05rem;
      color: #000;
      margin-bottom: 4px;
      text-shadow: none;
      letter-spacing: 0.02em;
    }

    .rule-desc {
      font-size: 0.9rem;
      color: #444;
      line-height: 1.5;
      font-weight: 500;
    }

    /* Special Highlighted Rules Box */
    .special-rule-box {
      position: relative;
      background: linear-gradient(135deg, #ffe082, #ffb300);
      border: 4px solid #000;
      border-radius: 15px;
      padding: 25px 20px 20px 20px;
      margin-top: 30px;
      box-shadow: 6px 6px 0 #000;
      text-align: left;
    }

    .special-splash-badge {
      position: absolute;
      top: -18px;
      left: 15px;
      background-color: var(--color-secondary);
      color: #fff;
      font-family: var(--font-title);
      font-weight: 900;
      font-size: 0.95rem;
      padding: 4px 14px;
      border: 3px solid #000;
      box-shadow: 3px 3px 0 #ffd600;
      border-radius: 8px;
      transform: rotate(-5deg);
      text-shadow: 1.5px 1.5px 0 #000;
      z-index: 10;
      letter-spacing: 0.05em;
      animation: splashPulse 2s infinite alternate ease-in-out;
    }

    @keyframes splashPulse {
      0% {
        transform: rotate(-5deg) scale(1);
      }

      100% {
        transform: rotate(-7deg) scale(1.05);
      }
    }

    .special-rule-title {
      font-family: var(--font-title);
      color: #000;
      font-size: 1.3rem;
      margin-bottom: 8px;
      text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
      letter-spacing: 0.03em;
      margin-top: 5px;
    }

    .special-rule-desc {
      font-size: 0.95rem;
      font-weight: 900;
      color: #d32f2f;
      margin-bottom: 12px;
      background: #fff;
      border: 2px solid #000;
      padding: 4px 10px;
      display: inline-block;
      border-radius: 6px;
      box-shadow: 2px 2px 0 #000;
    }

    .special-rule-steps {
      font-size: 0.88rem;
      line-height: 1.6;
      color: #111;
      background: rgba(255, 255, 255, 0.9);
      padding: 12px 15px;
      border-radius: 10px;
      border: 2.5px solid #000;
      box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
    }

    /* Macho Chant Section (Default/PC) */
    .macho-chant-container {
      margin-top: 30px;
      background: #fff3e0;
      border: 3px solid #000;
      border-radius: 15px;
      padding: 22px 15px;
      box-shadow: 4px 4px 0 #000;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .macho-chant-badge {
      display: inline-block;
      background: var(--color-accent);
      color: #fff;
      border: 2px solid #000;
      border-radius: 20px;
      padding: 4px 16px;
      font-weight: 900;
      font-size: 0.85rem;
      box-shadow: 2px 2px 0 #000;
      transform: rotate(-1deg);
      margin-bottom: 18px;
    }

    .macho-chant-cloud {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
      margin-bottom: 12px;
    }

    .chant-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-title);
    }

    .chant-role {
      font-size: 1rem;
      font-weight: 900;
      color: #333;
    }

    .chant-role.leading {
      color: #d84315;
    }

    .chant-role.audience {
      color: #ff8f00;
    }

    .chant-text {
      font-size: 1.9rem;
      font-weight: 900;
      text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
      letter-spacing: 1px;
    }

    .text-pop-yellow {
      color: #ffd54f;
      animation: macho-wiggle 1.5s infinite ease-in-out;
    }

    .text-pop-orange {
      color: #ff7043;
      animation: macho-pulse 1.2s infinite ease-in-out;
      display: inline-block;
    }

    .macho-chant-sub {
      font-size: 0.82rem;
      font-weight: bold;
      color: #555;
      margin-top: 12px;
    }

    /* Macho Chant Animations */
    @keyframes macho-wiggle {

      0%,
      100% {
        transform: rotate(-2deg) scale(0.98);
      }

      50% {
        transform: rotate(2deg) scale(1.02);
      }
    }

    @keyframes macho-pulse {

      0%,
      100% {
        transform: scale(1) rotate(-1deg);
      }

      50% {
        transform: scale(1.08) rotate(1deg);
        filter: drop-shadow(0 0 5px rgba(255, 87, 34, 0.4));
      }
    }
