﻿    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@500;600;700;800&family=Inter:wght@400;600&display=swap');
    /* PASSWORD START */
    #login-overlay {
        position: fixed;
        top: 0; 
        left: 0;
        width: 100%;
        height: 100%;
        background: #222;
        z-index: 99999;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #login-box {
        background: #333;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        text-align: center;
        border: 1px solid #555;
    }
    #password-input {
        padding: 10px;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 200px;
        border-radius: 5px;
        border: 1px solid #666;
        background: #444;
        color: white;
        font-size: 16px;
        text-align: center;
    }
    #login-btn {
        padding: 10px 20px;
        background: #008080;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
        transition: background 0.3s;
    }
    #login-btn:hover {
        background: #006666;
    }
    #error-msg {
        color: #ff6b6b;
        margin-top: 10px;
        display: none;
    }
    body.locked {
        overflow: hidden;
    }
    body.locked > *:not(#login-overlay) {
        filter: blur(5px);
        pointer-events: none;
    }
    /* PASSWORD END */


    body {
      margin: 0;
      padding: 40px;
      padding-bottom: 200px;
      background-color: #333;
      font-family: 'Montserrat', sans-serif;
      display: flex;
      flex-direction: column;
      gap: 80px;
      align-items: center;
    }

    .section-title {
        color: #FFD700;
        font-family: 'Poppins', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-bottom: 2px solid #008080;
        padding-bottom: 10px;
    }

    .story-display-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        border-top: 1px solid #555;
        padding-top: 40px;
    }

    .format-row {
        display: flex;
        flex-direction: row;
        gap: 60px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .format-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        page-break-inside: avoid;
    }

    .label-tag {
        color: #ddd;
        font-weight: 600;
        background: #008080;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    /* --- Base Container Styles --- */
    .visual-container {
      background: linear-gradient(135deg, #ffffff 0%, #fff8e1 100%);
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 50px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transform-origin: top center;
      border-bottom: 15px solid #FFD700;
      box-sizing: border-box;
      page-break-inside: avoid;
    }

    /* Story Format: 1080x1920 -> Scaled to 540x960 */
    .story-size {
      width: 540px;
      height: 960px;
    }

    /* Post Format: 1080x1080 -> Scaled to 540x540 */
    .post-size {
      width: 540px;
      height: 540px;
    }

    /* --- Theme Variables --- */
    :root {
      --primary: #008080;
      --secondary: #FFD700;
      --background-default: transparent;
      --text-primary: #1a2027;
      --text-secondary: #555555;
    }

    /* --- LAYOUT 2: Modern Dark --- */
    .visual-container.modern-dark {
        background: #121212 !important; 
        color: #e0e0e0;
        border-bottom: 15px solid #008080; /* Teal border bottom */
        box-shadow: 0 0 50px rgba(0,0,0,0.8);
    }
    .visual-container.modern-dark .section-title {
        border-bottom-color: #FFD700; 
    }
    .visual-container.modern-dark h1 {
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .visual-container.modern-dark h2 {
        color: #008080; /* Teal Subtitle */
    }
    .visual-container.modern-dark .main-message {
        color: #cccccc;
    }
    .visual-container.modern-dark .highlight-card {
        background: rgba(0, 128, 128, 0.15);
        border: 1px solid #008080;
        box-shadow: 0 4px 20px rgba(0,128,128,0.2);
    }
    .visual-container.modern-dark .highlight-text {
        color: #FFD700;
    }
    .visual-container.modern-dark .benefit-item {
        background: rgba(40, 40, 40, 0.8);
        border-left: 3px solid #008080;
        color: #eee;
    }
    .visual-container.modern-dark .cta-box {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 10px;
    }
    .visual-container.modern-dark .cta-link {
        background: #FFD700;
        color: #121212;
    }
    
    /* --- LAYOUT 3: Clean Minimal --- */
    .visual-container.clean-minimal {
        background: #ffffff !important;
        color: #333;
        border-bottom: none;
        border-top: 10px solid #333;
    }
    .visual-container.clean-minimal h1 {
        color: #000;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .visual-container.clean-minimal h2 {
        color: #666;
        font-style: italic;
    }
    .visual-container.clean-minimal .benefit-item {
        background: white;
        border: 1px solid #eee;
        box-shadow: none;
    }
    
    .content {
      position: relative;
      z-index: 1;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
      background: var(--background-default); 
    }

    /* Spacing adjustments for Story vs Post */
    .story-size .content {
        padding: 60px 40px 100px 40px;
    }
    .post-size .content {
        padding: 25px 30px 30px 30px; /* Adjusted padding for larger text */
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        flex-shrink: 0;
    }

    .story-size header { margin-bottom: 20px; }
    .post-size header { margin-bottom: 10px; }

    /* Logo Styles */
    .logo-container {
        margin-bottom: 5px;
    }
    .story-size .logo-container { width: 140px; height: 80px; }
    .post-size .logo-container { width: 100px; height: 60px; }

    /* Animations */
    @keyframes draw { to { stroke-dashoffset: 0; } }
    @keyframes fadeIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
    @keyframes glowPulse {
        0% { filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5)); }
        50% { filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)); }
        100% { filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5)); }
    }
    @keyframes textFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    .logo-path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw 1.5s ease-out forwards; }
    .logo-circle { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw 1.5s ease-out 0.8s forwards; }
    .detail-a-dot { opacity: 0; animation: fadeIn 0.4s ease-out 0.6s forwards, glowPulse 2s infinite 2.5s; transform-origin: center; }
    .detail-i-dot { opacity: 0; animation: fadeIn 0.4s ease-out 1.2s forwards; transform-origin: center; }
    .detail-i-arrow { opacity: 0; animation: fadeIn 0.4s ease-out 1.4s forwards; }
    .detail-o-arrow { opacity: 0; animation: fadeIn 0.4s ease-out 2.2s forwards; }
    .services-text { fill: #008080; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; opacity: 0; animation: textFadeIn 0.8s ease-out 2.5s forwards; }

    /* Typography */
    h1 {
      color: var(--primary);
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      text-transform: none; 
      margin: 0;
      line-height: 1.1;
    }
    .story-size h1 { font-size: 32px; margin-bottom: 10px; }
    .post-size h1 { font-size: 32px; margin-bottom: 8px; }

    h2 {
      color: var(--text-secondary);
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      margin: 0;
      text-transform: none;
      letter-spacing: normal;
    }
    .story-size h2 { font-size: 18px; margin-bottom: 5px; }
    .post-size h2 { font-size: 18px; margin-bottom: 4px; }

    .main-message {
        font-family: 'Inter', sans-serif;
        color: var(--text-primary);
        font-weight: 400;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }
    .story-size .main-message { font-size: 20px; margin-bottom: 20px; }
    .post-size .main-message { font-size: 18px; margin-bottom: 12px; }

    .highlight-card {
        background: rgba(255, 215, 0, 0.15);
        border: 2px solid var(--secondary);
        padding: 20px;
        border-radius: 12px; 
        box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .post-size .highlight-card { padding: 15px; flex-grow: 0; }

    .highlight-text {
        font-family: 'Inter', sans-serif;
        color: var(--primary);
        font-weight: 600;
        line-height: 1.3;
        width: 100%;
    }
    .story-size .highlight-text { font-size: 20px; }
    .post-size .highlight-text { font-size: 20px; }

    /* --- List Styles for New Offerings --- */
    .benefit-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        text-align: left;
    }
    .benefit-item {
        background: rgba(255, 255, 255, 0.6);
        padding: 12px;
        border-radius: 10px;
        border-left: 5px solid #008080;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .benefit-icon {
          color: #FFD700; /* Gold */
          font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
          font-size: 20px;
          font-weight: 400; /* Use normal weight for emojis */
          min-width: 24px;
          display: flex;
        justify-content: center;
    }
    .benefit-text {
        color: #1a2027;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
    }
    .post-size .benefit-item { padding: 10px; gap: 8px; }
    .post-size .benefit-text { font-size: 16px; }

    /* Profile Area */
    .profile-area {
        margin-top: auto; 
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
    .story-size .profile-area { margin-bottom: 20px; }
    /* Fix: Center profile content in Post view (Row layout) */
    .post-size .profile-area { margin-bottom: 10px; flex-direction: row; gap: 10px; justify-content: center; }

    .profile-placeholder {
        border-radius: 50%;
        border: 4px solid var(--secondary); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: white;
    }
    .story-size .profile-placeholder { width: 130px; height: 130px; margin-bottom: 10px; }
    .post-size .profile-placeholder { width: 60px; height: 60px; margin-bottom: 0; border-width: 2px; }
    
    .profile-placeholder img { width: 100%; height: 100%; object-fit: cover; }

    .profile-name {
        font-family: 'Poppins', sans-serif;
        color: var(--primary);
        font-weight: 800;
    }
    .story-size .profile-name { font-size: 18px; }
    .post-size .profile-name { font-size: 16px; }

    /* CTA Area */
    .cta-box {
        background: transparent;
        color: var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
    .story-size .cta-box { gap: 5px; }
    .post-size .cta-box { gap: 2px; }

    .cta-title {
        font-family: 'Inter', sans-serif;
        color: var(--text-primary);
        margin-bottom: 5px;
    }
    .story-size .cta-title { font-size: 14px; }
    .post-size .cta-title { font-size: 11px; display: none; }

    .cta-link {
        font-family: 'Poppins', sans-serif;
        background: var(--secondary);
        color: #000;
        box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
    }
    .story-size .cta-link { font-size: 18px; padding: 10px 25px; margin-bottom: 5px; }
    .post-size .cta-link { font-size: 16px; padding: 10px 20px; margin-bottom: 4px; }

    .cta-contact {
        font-family: 'Montserrat', sans-serif;
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }
    .story-size .cta-contact { font-size: 14px; }
    .post-size .cta-contact { font-size: 14px; }

    /* UI Controls */
    .download-btn {
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 14px;
        background-color: #008080;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 50px;
        font-family: inherit;
        font-weight: 600;
        transition: transform 0.1s;
    }
    .download-btn:hover { background-color: #006666; transform: translateY(-2px); }

    .text-helper {
        margin-top: 20px;
        width: 100%;
        max-width: 600px;
        font-family: monospace;
    }
    .text-helper label { color: white; display: block; margin-bottom: 5px; }
    .text-helper textarea {
        width: 100%;
        height: 100px;
        background: #222;
        color: #eee;
        border: 1px solid #555;
        padding: 10px;
        border-radius: 5px;
    }

    /* Styles for Animated Logo (Keyframes bereits oben deklariert: draw, fadeIn, glowPulse, textFadeIn) */
    .animated-mode .logo-path {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
        animation: draw 1.5s ease-out forwards;
    }
    .animated-mode .logo-circle {
         stroke-dasharray: 100;
         stroke-dashoffset: 100;
         animation: draw 1.5s ease-out 0.8s forwards;
    }
    .animated-mode .detail-a-dot {
         opacity: 0;
         animation: fadeIn 0.4s ease-out 0.6s forwards, glowPulse 2s infinite 2.5s;
         transform-origin: center;
    }
    .animated-mode .detail-i-dot {
         opacity: 0;
         animation: fadeIn 0.4s ease-out 1.2s forwards;
         transform-origin: center;
    }
    .animated-mode .detail-i-arrow {
         opacity: 0;
         animation: fadeIn 0.4s ease-out 1.4s forwards;
    }
    .animated-mode .detail-o-arrow {
         opacity: 0;
         animation: fadeIn 0.4s ease-out 2.2s forwards;
    }
    .animated-mode .services-text {
        fill: #008080;
        font-size: 16px;
        font-weight: 700;
        opacity: 0;
        animation: textFadeIn 0.8s ease-out 2.5s forwards;
    }

    /* --- New Design: AI & Clock Theme --- */
    .bg-tech-watermark {
        background: radial-gradient(circle at center, #ffffff 0%, #f0f8f8 100%);
        overflow: hidden; /* Ensure watermark doesn't spill */
    }

    /* Background Watermark Container */
    .bg-watermark-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0.3; /* Increased opacity for emphasis */
        perspective: 1200px; /* Enable 3D space */
        overflow: hidden;
    }

    .analog-clock-watermark {
        position: relative;
        width: 600px; /* Oversized for watermark effect */
        height: 600px;
        border: 25px solid rgba(0, 128, 128, 0.8); /* Thicker, bolder border */
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        
        /* 3D Transform: Tilted and slanted */
        transform: rotateX(45deg) rotateY(-15deg) rotateZ(15deg) scale(1.2);
        box-shadow: 
            inset 0 0 20px rgba(0,0,0,0.05),
            0 40px 60px rgba(0,128,128,0.1); /* Soft shadow for lift */
        transform-style: preserve-3d;
    }
    
    .clock-face {
        width: 100%;
        height: 100%;
        position: relative;
        transform: translateZ(20px); /* Lift clock face bits slightly */
        transform-style: preserve-3d;
    }

    .clock-center {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;
        height: 50px;
        background: #008080;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transform: translate(-50%, -50%) translateZ(40px); /* Extrude center */
    }

    .clock-hand {
        position: absolute;
        bottom: 50%;
        left: 50%;
        background: #008080;
        transform-origin: bottom center;
        border-radius: 10px 10px 0 0;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    }

    .hour-hand {
        width: 24px;
        height: 160px;
        transform: translate(-50%, 0) rotate(150deg) translateZ(30px); /* Lift hour hand */
    }

    .minute-hand {
        width: 18px;
        height: 240px;
        transform: translate(-50%, 0) rotate(30deg) translateZ(25px); /* Lift minute hand */
    }

    .clock-marker {
        position: absolute;
        width: 12px;
        height: 50px;
        background: #008080; /* Monochrome */
        left: 50%;
        top: 10px;
        transform-origin: 50% 290px;
        transform-style: preserve-3d;
    }

    .story-size .analog-clock-watermark { 
        width: 800px; 
        height: 800px; 
        border-width: 40px;
        transform: rotateX(45deg) rotateY(-20deg) rotateZ(10deg) scale(1.4) translateY(100px);
    }
    .story-size .clock-marker { transform-origin: 50% 390px; height: 50px; width:15px; }
    .story-size .hour-hand { height: 220px; width: 30px; }
    .story-size .minute-hand { height: 320px; width: 20px; }
    .story-size .clock-center { width: 50px; height: 50px; }

    /* RESPONSIVE MOBILE FIXES */
    @media (max-width: 768px) {
        body {
            padding: 10px;
            padding-bottom: 250px; /* Space for stacked buttons */
        }
        
        .format-row {
            gap: 20px;
        }

        .visual-container {
             /* Statt zoom: transform:scale + Höhenanpassung (kein Layout-Thrash, konsistenter cross-browser) */
             transform: scale(0.65);
             transform-origin: top center;
             margin-bottom: calc(-0.35 * 960px);
        }

        /* Adjust floating buttons */
        #png-export-btn, #pdf-export-btn, #text-export-btn, #toc-toggle-btn {
            right: 10px !important;
            transform-origin: bottom right;
            transform: scale(0.85); 
            padding: 10px 15px !important;
            font-size: 14px !important;
        }

        /* Stack buttons more tightly */
        #png-export-btn { bottom: 140px !important; }
        #text-export-btn { bottom: 85px !important; }
        #pdf-export-btn { bottom: 30px !important; }
        #toc-toggle-btn { bottom: 195px !important; }
        
        .section-title {
            font-size: 1.5rem;
            text-align: center;
        }
    }
    
    @media (max-width: 480px) {
        .visual-container {
             transform: scale(0.55);
             transform-origin: top center;
             margin-bottom: calc(-0.45 * 960px);
        }
        
        #png-export-btn, #pdf-export-btn, #text-export-btn, #toc-toggle-btn {
            transform: scale(0.75);
            right: 5px !important;
        }
        
        .section-title {
            font-size: 1.2rem;
        }
    }
/* --- NAVIGATION INDEX (Updated: Floating Collapsible) --- */
      /* Floating Button for Index */
      #toc-toggle-btn {
          position: fixed;
          bottom: 240px; /* Above PNG export button */
          right: 30px;
          z-index: 10000; /* High z-index */
          background: #333; /* Dark background */
          color: #FFD700; /* Gold icon */
          border: 2px solid #FFD700;
          padding: 15px; 
          border-radius: 50px;
          cursor: pointer;
          box-shadow: 0 5px 20px rgba(0,0,0,0.6);
          transition: transform 0.2s, background 0.2s;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 60px; /* Circular aspect */
          height: 60px;
      }
      #toc-toggle-btn:hover {
          transform: scale(1.1);
          background: #444;
      }
      
      /* The Index Container (Hidden by default, slides in or pops up) */
      .toc-container-floating {
          position: fixed;
          bottom: 310px; /* Just above the toggle button */
          right: 30px;
          width: 300px;
          max-height: 0; /* Collapsed state */
          overflow: hidden;
          background: rgba(40, 40, 40, 0.95);
          -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
          border-radius: 12px;
          border: 1px solid #444;
          box-shadow: 0 10px 30px rgba(0,0,0,0.5);
          z-index: 9999;
          transition: max-height 0.4s ease-in-out, opacity 0.4s;
          opacity: 0;
          pointer-events: none; /* Prevent clicks when hidden */
      }

      .toc-container-floating.open {
          max-height: 60vh; /* Max height when open */
          opacity: 1;
          pointer-events: auto;
          overflow-y: auto; /* Scrollable if list matches height */
      }

      .toc-content {
          padding: 20px;
      }

      .toc-content h3 { 
          color: #008080; 
          margin-top: 0; 
          font-family: 'Poppins', sans-serif; 
          border-bottom: 1px solid #555; 
          padding-bottom: 10px; 
          font-size: 1.2rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      #toc-list { 
          list-style: none; 
          padding: 0; 
          display: flex; 
          flex-direction: column; /* Vertical list for sidebar */
          gap: 8px; 
      }

      #toc-list li a {
          display: block;
          padding: 10px 15px;
          background: #333;
          color: #eee;
          text-decoration: none;
          border-radius: 8px;
          font-family: 'Inter', sans-serif;
          font-size: 14px;
          border-left: 3px solid transparent;
          transition: all 0.2s;
      }
      #toc-list li a:hover {
          background: #444;
          color: white;
          border-left-color: #FFD700;
          padding-left: 20px;
      }


/* Hide admin login button when admin mode is active */
.admin-mode #admin-login-btn {
    display: none !important;
}


/* Hide viewer trigger when admin mode is active */
body.admin-mode #viewer-admin-trigger {
    display: none !important;
}


/* Hide elements if toggled off */
.preview-clone .hidden-element {
    display: none !important;
}
.live-visibility-toggle {
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px; 
    filter: grayscale(100%);
    opacity: 0.5;
}
.live-visibility-toggle.active {
    filter: none;
    opacity: 1;
}


/* Hidden for visibility toggle */
.admin-hidden {
    display: none !important;
}

/* Two Column Layout */
.benefit-list.two-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    text-align: left;
}
.benefit-list.two-columns .benefit-item {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
.benefit-list.two-columns .benefit-text {
    font-size: 0.85em !important;
    line-height: 1.2;
}


    /* --- LAYOUT 4: Workshop / Technical Theme --- */
    .visual-container.workshop-design {
        background: #fdfdfd !important;
        color: #2c3e50;
        border-bottom: 15px solid #2c3e50;
        box-shadow: none;
    }
    
    .visual-container.workshop-design::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: radial-gradient(#cbd5e0 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.5;
        z-index: 0;
        pointer-events: none;
    }
    
    .visual-container.workshop-design .content {
        z-index: 2; 
        background: transparent;
    }

    .visual-container.workshop-design h1 {
        color: #2c3e50; 
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 3px solid #ffcc00;
        display: inline-block;
        padding-bottom: 5px;
    }
    
    .visual-container.workshop-design h2 {
        color: #555;
        font-family: 'Source Code Pro', 'Courier New', monospace;
        font-weight: 600;
        background: rgba(0,0,0,0.05);
        padding: 4px 10px;
        border-radius: 4px;
        display: inline-block;
        margin-top: 5px;
    }

    .visual-container.workshop-design .benefit-item {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        border-left: 5px solid #2c3e50;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        padding: 10px 15px; 
    }

    .visual-container.workshop-design .benefit-icon {
        color: #f39c12;
    }

    .visual-container.workshop-design .cta-link {
        background: #2c3e50;
        color: #ffffff;
        border-radius: 4px;
        text-transform: uppercase;
        box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
    }

    /* --- Workshop Post Optimization --- */
    .visual-container.workshop-design.post-size .content {
        padding: 25px;
        justify-content: flex-start;
        gap: 15px;
    }

    .visual-container.workshop-design.post-size h1 {
        font-size: 24px;
        margin-bottom: 5px;
        border-width: 2px;
    }

    .visual-container.workshop-design.post-size .benefit-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }

    .visual-container.workshop-design.post-size .benefit-item {
        padding: 8px 10px;
        font-size: 14px;
    }

    .visual-container.workshop-design.post-size .benefit-text {
        font-size: 13px;
        line-height: 1.3;
    }

    .visual-container.workshop-design.post-size .profile-area {
        margin-top: auto;
        padding-top: 10px;
        border-top: 1px solid #eee;
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
    }
    
    .visual-container.workshop-design.post-size .profile-placeholder {
        width: 50px; height: 50px;
        border-width: 2px;
    }

    .visual-container.workshop-design.post-size .cta-box {
        margin-top: 0;
    }

