/* ========================================
   IVEY BUSINESS SCHOOL BRAND VARIABLES
   ======================================== */

:root {
    /* Ivey Brand Colors */
    --ivey-dark-green: #034638;
    --ivey-deep-purple: #582C83;
    --ivey-gold: #c5b783;
    --ivey-white: #ffffff;
    --ivey-dark-gray: #464646;
    
    /* Extended Palette */
    --ivey-green-light: #065f46;
    --ivey-green-hover: #022d26;
    --ivey-gold-light: #d4c896;
    --ivey-gold-dark: #b5a372;
}

/* Activity Completion & Enhanced UX Styles */
.activity-completion {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--ivey-dark-green), var(--ivey-green-light));
    color: white;
    border-radius: 8px;
    border: 2px solid var(--ivey-dark-green);
}

.completion-message h5 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
}

.completion-message p {
    margin: 0;
    opacity: 0.9;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checklist-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 4px 0;
}

/* Flow Steps Styles */
.flow-step {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-indicator h4 {
    margin: 0;
    color: var(--ivey-dark-gray);
    font-weight: 600;
    font-size: 1.1em;
}

.step-content {
    padding-left: 47px; /* Align with text after step number */
}

.step-content p {
    margin: 0 0 15px 0;
    color: #4b5563;
    line-height: 1.6;
}

.custom-prompt-request {
    margin: 15px 0;
}

.request-box {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 2px solid #c5b783;
    border-radius: 8px;
    padding: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.request-box strong {
    color: #c5b783;
    font-weight: 600;
}

/* Prompt Storage Section Styles */
.prompt-storage {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.prompt-storage h5 {
    margin: 0 0 12px 0;
    color: var(--ivey-dark-gray);
    font-weight: 600;
    font-size: 1.1em;
}

#custom-prompt-storage {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
    background: white;
    resize: vertical;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

#custom-prompt-storage:focus {
    outline: none;
    border-color: #c5b783;
    box-shadow: 0 0 0 3px rgba(197, 183, 131, 0.1);
}

#custom-prompt-storage::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.save-btn {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    border: 2px solid #c5b783;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.save-btn:hover {
    background: #b8a56f;
    border-color: #b8a56f;
}

.save-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #6b7280;
}

.save-status {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.save-status.success {
    background: var(--ivey-dark-green);
    color: var(--ivey-white);
    border: 1px solid var(--ivey-green-light);
    font-weight: 500;
}

.save-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Activity Success Markers Styles */
.activity-success {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--ivey-dark-green), var(--ivey-green-light));
    border-radius: 8px;
    border: 2px solid var(--ivey-dark-green);
    color: var(--ivey-white);
}

.activity-success h4 {
    margin: 0 0 15px 0;
    color: var(--ivey-white);
    font-weight: 600;
}

.success-markers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #c5b783;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.marker-icon {
    font-size: 1.2em;
    min-width: 24px;
    text-align: center;
}

.marker-text {
    flex: 1;
    color: var(--ivey-dark-gray);
    font-weight: 500;
}

/* Screenshot Zoom Modal Styles */
.screenshot-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.screenshot-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px 24px;
    background: #f8f9fa;
    border-bottom: 2px solid #c5b783;
}

.screenshot-modal-header h3 {
    margin: 0;
    color: var(--ivey-dark-gray);
    font-weight: 600;
    font-size: 1.2em;
}

.screenshot-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.screenshot-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--ivey-dark-gray);
}

.screenshot-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 400px;
    background: #f8f9fa;
}

.zoomed-screenshot {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

.screenshot-modal-footer {
    padding: 12px 24px 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.screenshot-modal-footer p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.screenshot-modal-footer kbd {
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 12px;
    font-family: monospace;
}

/* Add hover effect to screenshots to indicate they're clickable */
.step-image:not([data-placeholder]) {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-image:not([data-placeholder]):hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive modal */
@media (max-width: 768px) {
    .screenshot-modal-content {
        max-width: 98vw;
        max-height: 98vh;
        margin: 1vh;
    }
    
    .screenshot-modal-header {
        padding: 16px 20px 12px 20px;
    }
    
    .screenshot-modal-header h3 {
        font-size: 1.1em;
    }
    
    .screenshot-modal-body {
        padding: 16px;
        min-height: 300px;
    }
    
    .zoomed-screenshot {
        max-height: 60vh;
    }
    
    .screenshot-modal-footer {
        padding: 10px 20px 14px 20px;
    }
    
    .screenshot-modal-footer p {
        font-size: 13px;
    }
}

/* Setup Prerequisite Check Styles */
.setup-prereq-check {
    transition: all 0.4s ease;
    border-radius: 8px;
    border: 2px solid transparent;
}

.prereq-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 6px 0;
}

.setup-completion-msg {
    margin-top: 15px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    display: none;
    animation: slideIn 0.5s ease-out;
}

.setup-completion-msg p {
    margin: 0;
    color: #065f46;
    font-weight: 500;
}

.setup-completion-msg strong {
    color: #047857;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Deployment Experience Note Styles */
.experience-note {
    margin-top: 15px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    border: 1px solid #4fc3f7;
    border-radius: 6px;
    border-left: 4px solid #29b6f6;
}

.experience-note p {
    margin: 0;
    color: #01579b;
    font-weight: 500;
    font-size: 14px;
}

/* Enhanced Resources Page Styles */
.example-tools {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.example-tool {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.example-tool h4 {
    margin: 0 0 10px 0;
    color: #2d3748;
}

.example-tool p {
    margin: 8px 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.troubleshooting-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trouble-item {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 15px;
}

.trouble-item h4 {
    color: #c53030;
    margin: 0 0 10px 0;
}

.trouble-item ul {
    margin: 0;
    padding-left: 20px;
}

.trouble-item li {
    margin: 8px 0;
    line-height: 1.4;
}

.learning-path {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.learning-stage {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 15px;
}

.learning-stage h4 {
    color: #0c4a6e;
    margin: 0 0 10px 0;
}

.prompt-copy-btn {
    display: inline-block;
    background: #e2e8f0;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.prompt-copy-btn:hover {
    background: #cbd5e0;
}

.success-criteria {
    margin-top: 40px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.criteria-category h4 {
    color: #2d3748;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.criteria-category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.criteria-category li {
    margin: 6px 0;
    color: #4a5568;
    font-size: 0.9em;
}

/* Enhanced Deployment Section Styles */
.deployment-success {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.deployment-success h5 {
    color: #276749;
    margin: 0 0 10px 0;
}

.success-indicators {
    margin: 0;
    padding-left: 20px;
}

.success-indicators li {
    margin: 6px 0;
    color: #2f855a;
    line-height: 1.4;
}

.common-issues {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 15px 0;
}

.issue-solution {
    background: #fef5e7;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9em;
    border-left: 3px solid #f6ad55;
}

.claude-prompt-box.small {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
}

.claude-prompt-box.small h6 {
    margin: 0 0 8px 0;
    color: #4a5568;
    font-size: 0.9em;
}

/* Timing and Flow Improvements */
.timing-note {
    background: #f0f8ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 10px;
    margin: 10px 0 15px 0;
    font-size: 0.9em;
}

.timing-note p {
    margin: 0;
    color: #1e40af;
}

.kickoff-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.overview-item {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.overview-item h4 {
    margin: 0 0 8px 0;
    color: #2d3748;
    font-size: 1em;
}

.overview-item p {
    margin: 0;
    font-size: 0.9em;
    color: #4a5568;
    line-height: 1.4;
}

/* Workshop Value Proposition Styles */
.workshop-value-prop {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9ff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.workshop-value-prop h4 {
    margin: 0 0 10px 0;
    color: #2d3748;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.value-item {
    background: white;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9em;
    line-height: 1.4;
}

.workshop-unique-value {
    margin: 30px 0;
    padding: 20px;
    background: var(--ivey-white);
    color: var(--ivey-dark-gray);
    border: 2px solid var(--ivey-gold);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(197, 183, 131, 0.15);
}

.workshop-unique-value h3 {
    margin: 0 0 15px 0;
    text-align: center;
    color: var(--ivey-dark-green);
    font-weight: 600;
}

.unique-value-card {
    background: rgba(197, 183, 131, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(197, 183, 131, 0.2);
}

.value-highlight h4 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.value-highlight p {
    margin: 0 0 15px 0;
    line-height: 1.5;
    opacity: 0.95;
}

.value-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.benefit {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Benton Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ivey-dark-gray);
    background: #ffffff;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: white;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Header Styles */
header {
    background: #fff;
    border-bottom: 2px solid #c5b783;
    padding: 2rem 3rem;
    border-radius: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 0.8rem;
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.header-text h1 {
    font-size: 1.75rem;
    color: var(--ivey-dark-gray);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.subtitle {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.workshop-duration {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation */
.workshop-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    padding: 0 3rem;
    overflow-x: auto;
}

.nav-items {
    display: flex;
    gap: 0;
    min-width: max-content;
}

.nav-item {
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: var(--ivey-white);
    background: var(--ivey-dark-green);
    border-bottom-color: var(--ivey-gold);
}

/* Main Content */
main {
    padding: 0;
    min-height: 600px;
}

/* Workshop Sections */
/* Removed old section-switching CSS - no longer needed with separate HTML files */
    color: var(--ivey-dark-gray);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.8;
    z-index: 1000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--ivey-dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Showcase */
.tools-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tool-card:hover {
    border-color: #c5b783;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tool-card h3 {
    font-size: 1.5rem;
    color: var(--ivey-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tool-card p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: #f8f9fa;
    color: var(--ivey-dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e1e5e9;
}

/* Clickable Tool Cards */
.tool-card.clickable {
    cursor: pointer;
}

.tool-card.clickable:hover {
    border-color: #c5b783;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tool-link {
    color: #c5b783;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card.clickable:hover .tool-link {
    opacity: 1;
}

/* Learning Objectives */
.learning-objectives {
    background: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #c5b783;
}

.learning-objectives h3 {
    font-size: 1.5rem;
    color: var(--ivey-dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.objective-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.objective-content h4 {
    font-size: 1.1rem;
    color: var(--ivey-dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.objective-content p {
    color: #666666;
    font-size: 0.95rem;
}

/* Activity Timeline */
.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.activity-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    position: relative;
}

.activity-item:hover {
    border-color: #c5b783;
}

.activity-time {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    height: fit-content;
    white-space: nowrap;
    text-align: center;
    min-width: 80px;
}

.activity-content {
    flex: 1;
}

.activity-content h3 {
    font-size: 1.3rem;
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.activity-content p {
    color: #666666;
    margin-bottom: 1.5rem;
}

.activity-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.activity-link {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.activity-link:hover {
    background: #b8a56f;
    transform: translateY(-1px);
}

/* Practice Examples */
.practice-examples {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.example-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #c5b783;
}

.example-box h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.example-box p {
    color: #666666;
    font-style: italic;
    margin: 0;
}

.practice-input {
    width: 100%;
    min-height: 80px;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s;
}

.practice-input:focus {
    outline: none;
    border-color: #c5b783;
}

/* Build Inspiration */
.build-inspiration {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #c5b783;
}

.build-inspiration h3 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.build-inspiration p {
    color: #666666;
    margin-bottom: 1.5rem;
}

.inspiration-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.inspiration-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: var(--ivey-dark-gray);
    padding: 0.75rem 1rem;
    text-decoration: none;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.inspiration-link:hover {
    border-color: #c5b783;
    transform: translateY(-1px);
}

.link-icon {
    font-size: 1.2rem;
}

/* Build Options */
.build-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.build-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border: 2px solid #e1e5e9;
    text-align: left;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.build-option:hover {
    border-color: #c5b783;
    background: #ffffff;
}

.build-option.selected {
    border-color: #c5b783;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(197, 183, 131, 0.3);
}

.build-option h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.build-option p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background: #e1e5e9;
    color: var(--ivey-dark-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-selection {
    background: #ffffff;
    border: 2px solid #c5b783;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.project-selection p {
    margin: 0;
    color: var(--ivey-dark-gray);
    font-weight: 500;
}

#selected-project {
    color: #c5b783;
    font-weight: 600;
}

/* Brainstorm Template */
.brainstorm-template {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brainstorm-section h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.brainstorm-section textarea {
    width: 100%;
    min-height: 80px;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s;
}

.brainstorm-section textarea:focus {
    outline: none;
    border-color: #c5b783;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-category {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #c5b783;
}

.resource-category h3 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.resource-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-list li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.resource-list li a:hover {
    color: var(--ivey-dark-gray);
    border-bottom-color: #c5b783;
}

/* Quick Reference */
.quick-reference {
    background: #ffffff;
    border: 2px solid #c5b783;
    padding: 2rem;
}

.quick-reference h3 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.prompt-examples {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prompt-example h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.prompt-example code {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--ivey-dark-gray);
    display: block;
    border-left: 4px solid #c5b783;
    line-height: 1.4;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-placeholder {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: #c5b783;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    background: #f8f9fa;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid #e1e5e9;
}

.play-button {
    font-size: 3rem;
    color: #c5b783;
}

.video-placeholder h3 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.video-placeholder p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Next Steps */
.next-steps-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #c5b783;
}

.step-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.next-step-content {
    flex: 1;
}

.next-step-content h3 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.next-step-content p {
    color: #666666;
    margin-bottom: 1rem;
}

.step-link {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.2s;
}

.step-link:hover {
    background: #b8a56f;
    transform: translateY(-1px);
}

.starter-ideas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.idea-tag {
    background: #ffffff;
    color: var(--ivey-dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #c5b783;
}

.problem-examples {
    list-style: none;
    margin-top: 1rem;
}

.problem-examples li {
    color: #666666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
    padding-left: 1.5rem;
}

.problem-examples li:before {
    content: "•";
    color: #c5b783;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sharing-tips {
    margin-top: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e1e5e9;
}

.sharing-tips p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.sharing-tips p:last-child {
    margin-bottom: 0;
}

/* Support Section */
.support-section {
    background: #ffffff;
    border: 2px solid #c5b783;
    padding: 2rem;
}

.support-section h3 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-option {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.support-option h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.support-option p {
    color: #666666;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.support-option code {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.8rem;
}

.support-option em {
    color: #999999;
    font-size: 0.85rem;
}

/* Footer */
.workshop-footer {
    background: #f8f9fa;
    border-top: 2px solid #c5b783;
    padding: 2rem 3rem;
    text-align: center;
}

.footer-content p {
    color: #666666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-note {
    font-style: italic;
    color: #999999;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    
    header,
    .workshop-nav,
    .workshop-section,
    .workshop-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .tools-showcase {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .activity-time {
        align-self: flex-start;
        min-width: auto;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-items {
        justify-content: flex-start;
    }
}

/* Setup Steps */
.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.setup-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.build-step-content {
    flex: 1;
}

.build-step-content h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.build-step-content p {
    color: #666666;
    margin-bottom: 1rem;
}

/* Prompt Templates */
.prompt-templates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prompt-template {
    display: none;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    border: 2px solid #e1e5e9;
}

.prompt-template.active {
    display: block;
}

.prompt-template h5 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.prompt-box {
    position: relative;
    background: #ffffff;
    border: 2px solid #c5b783;
    border-radius: 4px;
    overflow: hidden;
}

.prompt-box code {
    display: block;
    padding: 1.5rem;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--ivey-dark-gray);
    background: none;
    margin: 0;
    border: none;
}

.copy-prompt {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copy-prompt:hover {
    background: #b8a56f;
}

.copy-prompt.copied {
    background: #28a745;
    color: white;
}

/* Building Tips */
.building-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tip-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #c5b783;
}

.tip-section h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tip-list li {
    color: #666666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
    padding-left: 1.5rem;
}

.tip-list li:before {
    content: "•";
    color: #c5b783;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.followup-examples {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.followup-example {
    background: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #e1e5e9;
    font-size: 0.9rem;
}

.followup-example strong {
    color: #c5b783;
}

/* Progress Tracker */
.progress-tracker {
    background: #ffffff;
    border: 2px solid #c5b783;
    padding: 1.5rem;
    border-radius: 4px;
}

.progress-tracker h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #666666;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.checklist-item:hover {
    color: var(--ivey-dark-gray);
}

.checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c5b783;
}

.checklist-item input[type="checkbox"]:checked + span {
    color: #28a745;
    text-decoration: line-through;
}

/* Deployment Options */
.deployment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.deploy-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #c5b783;
}

.deploy-option h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.deploy-option p {
    color: #666666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.deploy-option ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.deploy-option li {
    color: #666666;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.deploy-option li:before {
    content: "→";
    color: #c5b783;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* AI Chat Section */
.ai-chat-section {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #c5b783;
    border-radius: 0 4px 4px 0;
}

.chat-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.chat-intro h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.chat-intro p {
    color: #666666;
    margin: 0;
}

.chat-suggestions {
    margin-bottom: 2rem;
}

.chat-suggestions h5 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.suggestion-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.suggestion-btn {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-size: 0.9rem;
    color: var(--ivey-dark-gray);
    font-family: inherit;
}

.suggestion-btn:hover {
    border-color: #c5b783;
    background: #ffffff;
    transform: translateY(-1px);
}

.suggestion-btn:active {
    transform: translateY(0);
}

.chat-interface {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
}

.chat-messages {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-message,
.user-message {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ivey-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #e1e5e9;
}

.message-content {
    flex: 1;
    max-width: 80%;
}

.ai-message .message-content {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0 12px 12px 12px;
    border: 1px solid #e1e5e9;
}

.user-message .message-content {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 1rem;
    border-radius: 12px 0 12px 12px;
}

.message-content p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul,
.message-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.message-content li {
    margin: 0.25rem 0;
}

.message-content strong {
    color: var(--ivey-dark-gray);
}

.user-message .message-content strong {
    color: #1a1a1a;
}

.chat-input-area {
    border-top: 1px solid #e1e5e9;
    padding: 1rem;
    background: #ffffff;
}

.input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

#chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 44px;
    max-height: 120px;
    transition: border-color 0.2s;
}

#chat-input:focus {
    outline: none;
    border-color: #c5b783;
}

#send-chat {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    height: fit-content;
}

#send-chat:hover:not(:disabled) {
    background: #b8a56f;
    transform: translateY(-1px);
}

#send-chat:disabled {
    background: #e1e5e9;
    color: #999999;
    cursor: not-allowed;
    transform: none;
}

.chat-status {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666666;
    min-height: 20px;
}

.chat-status.loading {
    color: #c5b783;
}

.chat-status.error {
    color: #dc3545;
}

.chat-status.success {
    color: #28a745;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    color: #666666;
    font-style: italic;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--ivey-gold);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.project-selection-section {
    margin-top: 2rem;
}

.project-selection-section h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-selection-section p {
    color: #666666;
    margin-bottom: 1.5rem;
}

/* Next Project Planning */
.next-project-planning {
    background: #ffffff;
    border: 2px solid #c5b783;
    padding: 2rem;
    border-radius: 4px;
}

.next-project-planning h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.planning-template {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.planning-section h5 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.planning-section textarea {
    width: 100%;
    min-height: 80px;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s;
}

.planning-section textarea:focus {
    outline: none;
    border-color: #c5b783;
}

/* Setup Checker */
.setup-checker {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #c5b783;
    border-radius: 0 4px 4px 0;
}

.setup-checker h4 {
    color: var(--ivey-dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.requirement-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    border: 2px solid #e1e5e9;
}

.requirement-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.requirement-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #c5b783;
}

.requirement-check label {
    color: var(--ivey-dark-gray);
    font-size: 0.95rem;
    cursor: pointer;
}

.requirement-status {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.status-checking {
    background: #fff3cd;
    color: #856404;
}

.status-good {
    background: #d4edda;
    color: #155724;
}

.status-manual {
    background: #e1e5e9;
    color: #666666;
}

.setup-summary {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 4px;
    border: 2px solid #c5b783;
}

/* Account Setup Flow */
.account-setup-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.setup-step-card {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.setup-step-card:hover {
    border-color: #c5b783;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-header .step-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-header h4 {
    margin: 0;
    color: var(--ivey-dark-gray);
    font-weight: 600;
}

.setup-step-card > .step-content {
    padding: 2rem;
}

.setup-step-card > .step-content p {
    color: #666666;
    margin-bottom: 1.5rem;
}

.step-actions {
    margin-bottom: 2rem;
}

.action-button {
    display: inline-block;
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

.action-button:hover {
    background: #b8a56f;
    transform: translateY(-1px);
    color: var(--ivey-dark-gray);
}

.action-button.primary {
    background: var(--ivey-gold);
}

.step-instructions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #c5b783;
}

.step-instructions p {
    margin-bottom: 1rem;
    color: var(--ivey-dark-gray);
    font-weight: 600;
}

.step-instructions ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #666666;
}

.step-instructions li {
    margin: 0.5rem 0;
}

.completion-check {
    background: #f8fffe;
    padding: 1.25rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.completion-check:hover {
    border-color: #c5b783;
    background: #fffef8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 183, 131, 0.15);
}

.completion-check.checked {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.completion-check input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    position: relative;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.completion-check input[type="checkbox"]:hover {
    border-color: #c5b783;
    box-shadow: 0 0 0 3px rgba(197, 183, 131, 0.1);
    transform: scale(1.05);
}

.completion-check input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    animation: checkboxPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.completion-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: 2px solid white;
    border-left: none;
    border-top: none;
    transform: translate(-50%, -60%) rotate(45deg);
    animation: checkmarkDraw 0.3s ease 0.1s both;
}

.completion-check label {
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

.completion-check.checked label {
    color: #065f46;
}

@keyframes checkboxPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 6px;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 6px;
        height: 12px;
        opacity: 1;
    }
}

/* Final Checklist Special Styling */
.final-check-item.completion-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.final-check-item.completion-check label {
    display: block;
    cursor: pointer;
}

.final-check-item.completion-check label h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1em;
    font-weight: 600;
}

.final-check-item.completion-check label p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Prerequisites Checklist Styling */
.prereq-item.completion-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.prereq-item.completion-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
}

.prereq-item.completion-check label {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Code Block Styling */
.code-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin: 0.5rem 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* GIF Controls */
.gif-container {
    position: relative;
}

.gif-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

.gif-image[data-paused="true"] {
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.gif-image[data-paused="false"] {
    filter: none;
}

.gif-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gif-wrapper:hover .gif-controls {
    opacity: 1;
}

.gif-play-btn {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.gif-play-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.gif-image[data-paused="false"] + .gif-controls .gif-play-btn {
    background: rgba(197, 183, 131, 0.9);
    color: var(--ivey-dark-gray);
}

.gif-image[data-paused="false"] + .gif-controls .gif-play-btn:hover {
    background: rgba(197, 183, 131, 1);
}

/* Enhanced Quick Setup Check */
.setup-prereq-check {
    background: linear-gradient(135deg, #fff9e6 0%, #fef5e6 100%);
    border: 2px solid #f0c674;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(240, 198, 116, 0.15);
    position: relative;
    overflow: hidden;
}

.setup-prereq-check.completed {
    background: linear-gradient(135deg, rgba(3, 70, 56, 0.1) 0%, rgba(6, 95, 70, 0.2) 100%);
    border-color: var(--ivey-dark-green);
    box-shadow: 0 4px 20px rgba(3, 70, 56, 0.25);
    transform: translateY(-2px);
}

.setup-prereq-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f0c674, #f4d03f, #f0c674);
    transition: background 0.4s ease;
}

.setup-prereq-check.completed::before {
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
}

.prereq-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.prereq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c674 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #8b7355;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(240, 198, 116, 0.3);
}

.setup-prereq-check.completed .prereq-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.prereq-content h4 {
    margin: 0 0 0.5rem 0;
    color: #8b7355;
    font-size: 1.25rem;
    transition: color 0.4s ease;
}

.setup-prereq-check.completed .prereq-content h4 {
    color: #065f46;
}

.prereq-content p {
    margin: 0;
    color: #a0855b;
    transition: color 0.4s ease;
}

.setup-prereq-check.completed .prereq-content p {
    color: #047857;
}

.prereq-checklist {
    margin: 1rem 0;
}

.setup-help {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(240, 198, 116, 0.3);
    transition: border-color 0.4s ease;
}

.setup-prereq-check.completed .setup-help {
    border-color: rgba(16, 185, 129, 0.3);
}

.setup-help p {
    color: #a0855b;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.4s ease;
}

.setup-prereq-check.completed .setup-help p {
    color: #047857;
}

.prereq-success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: successSlideIn 0.5s ease-out;
}

.success-icon {
    font-size: 24px;
    animation: bounce 0.6s ease-in-out;
}

.success-text strong {
    color: #065f46;
    display: block;
    margin-bottom: 0.25rem;
}

.success-text p {
    color: #047857;
    margin: 0;
    font-size: 0.9rem;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.setup-summary-card {
    background: linear-gradient(135deg, #c5b783 0%, #b8a56f 100%);
    color: var(--ivey-dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.setup-summary-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.setup-summary-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.progress-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.progress-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    max-width: 200px;
    height: 8px;
    background: rgba(44, 44, 44, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #2c2c2c;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-percent {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 35px;
}

/* Deployment Flow */
.deployment-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.deploy-step-card {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
}

.deploy-step-card.success {
    border-color: #28a745;
}

.deploy-step-card.success .step-header {
    background: #d4edda;
    border-bottom-color: #28a745;
}

.deploy-step-content {
    padding: 2rem;
}

.deploy-step-content p {
    color: #666666;
    margin-bottom: 1.5rem;
}

.claude-prompt-box {
    background: #f8f9fa;
    border: 2px solid #c5b783;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.claude-prompt-box.small {
    padding: 1rem;
    margin: 0.5rem 0;
}

.claude-prompt-box h5 {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.prompt-text {
    background: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--ivey-dark-gray);
    border: 1px solid #e1e5e9;
    margin-bottom: 1rem;
}

.copy-prompt-btn {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-prompt-btn:hover {
    background: #b8a56f;
}

.copy-prompt-btn.copied {
    background: #28a745;
    color: white;
}

.step-tips {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #28a745;
}

.step-tips p {
    margin-bottom: 0.75rem;
    color: #155724;
    font-weight: 600;
}

.step-tips ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #155724;
}

.deployment-instructions {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    margin: 1rem 0;
}

.deployment-instructions h5 {
    color: #856404;
    margin-bottom: 1rem;
    font-weight: 600;
}

.deployment-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
    color: #856404;
}

.deployment-instructions li {
    margin: 0.5rem 0;
    font-weight: 500;
}

.troubleshooting {
    background: #f8d7da;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #dc3545;
    margin-top: 1rem;
}

.troubleshooting h5 {
    color: #721c24;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.celebration-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.share-options,
.next-steps {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    border: 2px solid #28a745;
}

.share-options h5,
.next-steps h5 {
    color: #155724;
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-options ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #155724;
}

.share-options li {
    margin: 0.5rem 0;
}

.next-steps p {
    color: #155724;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .inspiration-links {
        flex-direction: column;
    }
    
    .build-options {
        grid-template-columns: 1fr;
    }
    
    .setup-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .building-tips {
        grid-template-columns: 1fr;
    }
    
    .deployment-options {
        grid-template-columns: 1fr;
    }
    
    .requirement-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Interactive Claude Code Setup Styles */
.claude-code-detailed {
    border: 2px solid #c5b783;
    background: linear-gradient(135deg, #fafaf8 0%, #ffffff 100%);
}

.step-badge {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.claude-substeps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.claude-substep {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    background: white;
    transition: all 0.3s ease;
}

.claude-substep.disabled {
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(0.3);
}

.claude-substep.completed {
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.substep-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.substep-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 2rem;
}

.substep-header h5 {
    color: var(--ivey-dark-gray);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.substep-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #f8f9fa;
    color: #6c757d;
    transition: all 0.3s ease;
}

.substep-status.completed {
    background: #28a745;
    color: white;
}

.account-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.flow-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #c5b783;
}

.option-header {
    color: #c5b783;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.flow-option ul {
    margin: 0;
    padding-left: 1.5rem;
}

.flow-option li {
    margin-bottom: 0.5rem;
    color: #555;
}

.test-command-box {
    background: #2c2c2c;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.command-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.copy-button {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: #b8a971;
    transform: translateY(-1px);
}

.copy-button.success {
    background: #28a745;
    color: white;
}

.command-text {
    background: #1e1e1e;
    color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    border-left: 3px solid #c5b783;
}

.expected-response {
    background: #e8f4fd;
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.expected-response p {
    margin-bottom: 1rem;
    color: #2c5aa0;
    font-weight: 600;
}

.expected-response ul {
    margin: 0;
    padding-left: 1.5rem;
}

.expected-response li {
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.interface-guide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.interface-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #c5b783;
}

.feature-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.feature-info h6,
.feature-info strong {
    color: var(--ivey-dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pro-tips {
    background: linear-gradient(135deg, #fff3cd 0%, #fefefe 100%);
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.pro-tips h6 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pro-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.pro-tips li {
    margin-bottom: 0.8rem;
    color: #856404;
    line-height: 1.5;
}

.pro-tips strong {
    color: #6c5402;
}

.interactive-check {
    margin-top: 2rem;
    text-align: center;
}

.check-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.check-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.check-button:active {
    transform: translateY(0);
}

.claude-completion-summary {
    background: linear-gradient(135deg, #d4edda 0%, #ffffff 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    transition: all 0.5s ease;
}

.claude-completion-summary h5 {
    color: #155724;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.claude-completion-summary p {
    color: #155724;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.next-steps {
    text-align: left;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.next-steps strong {
    color: #155724;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.next-steps ul {
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    color: #155724;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    animation: slideInRight 0.3s ease;
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.info {
    border-left: 4px solid #007bff;
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.notification-content span {
    flex: 1;
    color: var(--ivey-dark-gray);
}

.notification-content button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content button:hover {
    background: #f8f9fa;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design for Interactive Elements */
/* Workshop Note Styling */
.workshop-note {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    border: 2px solid #2196f3;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.note-content {
    flex: 1;
}

.note-content h4 {
    color: #1565c0;
    margin: 0 0 1rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.note-content p {
    color: #1976d2;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.note-content p strong {
    color: #0d47a1;
    font-weight: 600;
}

@media (max-width: 768px) {
    .workshop-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .note-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .account-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .interface-guide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .substep-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .command-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
}


/* Pre-Workshop Setup Section Styles */
.setup-time-estimate {
    text-align: center;
    margin-bottom: 2rem;
}

/* Setup Prerequisite Check */
.setup-prereq-check {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.setup-prereq-check h4 {
    color: #856404;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.setup-prereq-check p {
    color: #856404;
    margin-bottom: 1.5rem;
}

.prereq-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.prereq-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.prereq-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ffc107;
}

.prereq-item label {
    color: #856404;
    font-weight: 500;
    cursor: pointer;
}

.setup-help {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid #ffc107;
}

.setup-help p {
    margin: 0;
    font-size: 0.9rem;
}

/* Video Section Simplification */
.video-note {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.video-note p {
    color: var(--ivey-dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.video-note p:last-child {
    margin-bottom: 0;
}

.video-note a {
    color: #c5b783;
    font-weight: 600;
    text-decoration: none;
}

.video-note a:hover {
    text-decoration: underline;
}

/* Section Navigation Buttons */
.section-navigation {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 2px solid #f0f0f0;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-height: 44px;
}

.nav-btn:hover {
    background: #b8a56f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 183, 131, 0.3);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-btn.prev-btn {
    margin-right: auto;
}

.nav-btn.next-btn {
    margin-left: auto;
    background: #2c2c2c;
    color: #c5b783;
}

.nav-btn.next-btn:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.3);
}

/* Single button centering */
.nav-buttons:has(.prev-btn:only-child) .prev-btn,
.nav-buttons:has(.next-btn:only-child) .next-btn {
    margin: 0 auto;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .nav-btn.prev-btn,
    .nav-btn.next-btn {
        margin: 0;
    }
}
}

.time-badge {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.setup-time-estimate p {
    color: #666;
    font-size: 1rem;
}

.setup-benefits {
    margin-bottom: 2rem;
}

.benefit-callout {
    background: #f8f9fa;
    border: 2px solid #c5b783;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-content h3 {
    color: var(--ivey-dark-gray);
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.ai-help-callout {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #c5b783;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.ai-help-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ai-icon {
    font-size: 1.5rem;
    color: #c5b783;
}

.ai-help-header h3 {
    color: var(--ivey-dark-gray);
    margin: 0;
    font-size: 1.25rem;
}

.ai-help-content p {
    color: var(--ivey-dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ai-help-examples {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
}

.ai-help-examples p {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--ivey-dark-gray);
}

.ai-help-examples ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #666;
}

.ai-help-examples li {
    margin: 0.25rem 0;
    font-style: italic;
}

.setup-checklist {
    margin: 3rem 0;
}

.checklist-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checklist-header h3 {
    color: var(--ivey-dark-gray);
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.checklist-header p {
    color: #666;
    margin: 0;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setup-step-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.setup-step-card:hover {
    border-color: #c5b783;
}

.step-header {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-header h4 {
    color: var(--ivey-dark-gray);
    margin: 0;
    font-size: 1.25rem;
    flex-grow: 1;
}

.step-time {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.step-content {
    padding: 2rem;
}

.step-content p {
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.account-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    padding: 1rem;
}

.account-info h5 {
    color: var(--ivey-dark-gray);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.account-info p {
    color: #666;
    margin: 0;
    font-size: 0.85rem;
}

.account-action {
    flex-shrink: 0;
    margin-left: 1rem;
}

.account-info {
    flex-grow: 1;
    min-width: 0; /* Allow text to truncate if needed */
}

.setup-button {
    background: var(--ivey-dark-green);
    color: var(--ivey-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
    border: 1px solid var(--ivey-dark-green);
}

.setup-button:hover {
    background: var(--ivey-green-hover);
    border-color: var(--ivey-green-hover);
}

.completion-check {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.completion-check input[type="checkbox"] {
    margin-right: 0.5rem;
}

.completion-check label {
    color: var(--ivey-dark-gray);
    font-weight: 600;
    cursor: pointer;
}

.step-instructions ol {
    color: var(--ivey-dark-gray);
    padding-left: 1.5rem;
    line-height: 1.8;
}

.step-instructions li {
    margin: 0.5rem 0;
}

.step-instructions strong {
    color: #c5b783;
    font-weight: 600;
}

.step-instructions code {
    background: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: var(--ivey-dark-gray);
}

.step-instructions h5 {
    color: #c5b783;
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.step-note {
    background: #f8f9fa;
    border-left: 4px solid #c5b783;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 4px 4px 0;
}

.step-note ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.step-note li {
    margin: 0.25rem 0;
}

/* Visual Guide Styling */
.step-visual-guide {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.visual-section {
    margin-bottom: 2rem;
}

.visual-section:last-child {
    margin-bottom: 0;
}

.visual-section h5 {
    color: #c5b783 !important;
    font-size: 1.1rem !important;
    margin: 0 0 1rem 0 !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   ACCESSIBILITY & COGNITIVE LOAD STYLES
   ======================================== */

/* Cognitive Helper Boxes */
.cognitive-helper-box {
    background: linear-gradient(135deg, rgba(197, 183, 131, 0.1) 0%, rgba(197, 183, 131, 0.2) 100%);
    border: 2px solid var(--ivey-gold);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(197, 183, 131, 0.1);
}

.cognitive-helper-box.priority {
    background: linear-gradient(135deg, rgba(88, 44, 131, 0.1) 0%, rgba(88, 44, 131, 0.15) 100%);
    border-color: var(--ivey-deep-purple);
    box-shadow: 0 2px 4px rgba(88, 44, 131, 0.1);
}

.cognitive-helper-box h5 {
    color: var(--ivey-gold-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cognitive-helper-box.priority h5 {
    color: var(--ivey-deep-purple);
}

.cognitive-helper-box p {
    color: var(--ivey-dark-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cognitive-helper-box.priority p {
    color: var(--ivey-deep-purple);
}

/* Difficulty Indicators */
.difficulty-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.difficulty-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.difficulty-badge.easy {
    background: var(--ivey-dark-green);
}

.difficulty-badge.medium {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
}

.difficulty-badge.hard {
    background: var(--ivey-deep-purple);
}

.tech-level {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* Enhanced Focus Indicators for Keyboard Navigation */
.keyboard-navigation button:focus,
.keyboard-navigation input:focus,
.keyboard-navigation textarea:focus,
.keyboard-navigation select:focus,
.keyboard-navigation a:focus,
.keyboard-navigation .clickable:focus,
.keyboard-navigation [tabindex]:focus {
    outline: 3px solid #4f46e5 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1) !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cognitive-helper-box {
        background: #ffffff;
        border-width: 3px;
    }
    
    .difficulty-badge {
        border: 2px solid currentColor;
        font-weight: bold;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .slideIn,
    .animate-in {
        animation: none !important;
        transform: none !important;
    }
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced Error States */
.error-message {
    background: linear-gradient(135deg, rgba(88, 44, 131, 0.1) 0%, rgba(88, 44, 131, 0.15) 100%);
    border: 2px solid var(--ivey-deep-purple);
    color: var(--ivey-deep-purple);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-weight: 500;
}

.success-message {
    background: linear-gradient(135deg, rgba(3, 70, 56, 0.1) 0%, rgba(6, 95, 70, 0.15) 100%);
    border: 2px solid var(--ivey-dark-green);
    color: var(--ivey-dark-green);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-weight: 500;
}

/* Enhanced Form Validation */
input:invalid {
    border-color: var(--ivey-deep-purple) !important;
    box-shadow: 0 0 0 1px rgba(88, 44, 131, 0.1) !important;
}

input:valid {
    border-color: var(--ivey-dark-green) !important;
    box-shadow: 0 0 0 1px rgba(3, 70, 56, 0.1) !important;
}

/* Cognitive Load Helpers for Complex Instructions */
.step-instructions ol {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 2.5rem;
    margin-left: 0;
}

.step-instructions ol li {
    counter-increment: step-counter;
    margin: 1rem 0;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    background: rgba(197, 183, 131, 0.05);
    border-left: 4px solid var(--ivey-gold);
    border-radius: 0 4px 4px 0;
    position: relative;
}

.step-instructions ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: -2.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid var(--ivey-white);
    box-shadow: 0 2px 4px rgba(197, 183, 131, 0.3);
}

/* Progress Indicators */
.progress-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
}

.progress-indicator .icon {
    color: #0ea5e9;
    font-size: 1.1rem;
}

.progress-indicator .text {
    color: #0c4a6e;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Video Placeholder Styling */
.video-placeholder {
    background: #2c2c2c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    transform: translateY(-2px);
}

.video-thumbnail {
    position: relative;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    padding: 2rem;
    text-align: center;
    color: white;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.play-button {
    font-size: 3rem;
    color: #c5b783;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.video-duration {
    font-size: 0.9rem;
    color: #c5b783;
    background: rgba(197, 183, 131, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.video-description {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #e9ecef;
}

/* Screenshot Gallery Styling */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.screenshot-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.screenshot-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.step-image[data-placeholder]::before {
    content: "📸 " attr(data-placeholder);
    text-align: center;
    padding: 2rem;
}

.image-caption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ivey-dark-gray);
    background: #f8f9fa;
    border-top: 2px solid #c5b783;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .step-visual-guide {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-thumbnail {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .step-image {
        height: 180px;
    }
}

/* Ensure images don't break layout */
.step-image img {
    max-width: 100%;
    height: auto;
}

/* Setup Overview Styling */
.setup-overview {
    background: white;
    border: 2px solid #c5b783;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.overview-header {
    text-align: center;
    margin-bottom: 2rem;
}

.overview-header h3 {
    color: #c5b783;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overview-header p {
    color: #666;
    font-size: 1.1rem;
}

.overview-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.overview-step {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.overview-step:hover {
    transform: translateY(-2px);
}

.overview-number {
    background: var(--ivey-gold);
    color: var(--ivey-dark-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto 1rem auto;
}

.overview-content h4 {
    color: var(--ivey-dark-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overview-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.visual-learning-note {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid #c5b783;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: var(--ivey-dark-gray);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.note-content p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Mobile responsive for overview */
@media (max-width: 768px) {
    .setup-overview {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .overview-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .visual-learning-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .note-icon {
        font-size: 1.5rem;
    }
}

/* ===== ENHANCED HOVER STATES (inspired by educational-prompts-hub) ===== */

/* Navigation buttons */
.nav-btn {
    transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 183, 131, 0.25);
    /* Preserve the original background colors */
    background: #b8a56f;
    /* Add elegant underline effect */
    text-decoration: underline;
    text-decoration-color: rgba(44, 44, 44, 0.8);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.nav-btn.next-btn:hover {
    background: #1a1a1a !important;
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
    /* Different underline color for dark next button */
    text-decoration: underline;
    text-decoration-color: rgba(197, 183, 131, 0.9);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.nav-btn:active {
    transform: translateY(0px);
}

/* Setup action buttons */
.setup-button {
    transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, filter 0.2s ease !important;
}

.setup-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(197, 183, 131, 0.3);
    filter: brightness(1.05);
    /* Add underline effect for setup buttons */
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.8);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.setup-button:active {
    transform: translateY(0px);
}

/* Suggestion and copy buttons */
.suggestion-btn, .copy-prompt, .copy-prompt-btn {
    transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease !important;
}

.suggestion-btn:hover, .copy-prompt:hover, .copy-prompt-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 183, 131, 0.2);
    background-color: rgba(197, 183, 131, 0.08);
    border-color: #c5b783;
    /* Add subtle underline effect */
    text-decoration: underline;
    text-decoration-color: rgba(197, 183, 131, 0.7);
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.suggestion-btn:active, .copy-prompt:active, .copy-prompt-btn:active {
    transform: translateY(0px);
}

/* Video play buttons */
.play-button {
    transition: transform 0.18s ease, color 0.2s ease, filter 0.2s ease !important;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    color: #dac589;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

/* Enhanced video placeholder hover */
.video-placeholder {
    transition: transform 0.18s ease, box-shadow 0.2s ease !important;
}

.video-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Screenshot items hover */
.screenshot-item {
    transition: transform 0.18s ease, box-shadow 0.2s ease !important;
}

.screenshot-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 183, 131, 0.15);
}

/* Chat send button */
#send-chat {
    transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

#send-chat:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 183, 131, 0.3);
    background-color: #b5a373;
}

#send-chat:active:not(:disabled) {
    transform: translateY(0px);
}

/* General link hover effects */
a:hover:not(.nav-btn):not(.setup-button):not(.suggestion-btn):not(.copy-prompt):not(.copy-prompt-btn) {
    text-decoration: underline;
    text-decoration-color: #c5b783;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
    transition: text-decoration-color 0.2s ease;
}

/* General button focus states for accessibility */
.nav-btn:focus-visible, .setup-button:focus-visible, 
.suggestion-btn:focus-visible, .copy-prompt:focus-visible, .copy-prompt-btn:focus-visible,
#send-chat:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 183, 131, 0.4), 0 0 0 6px rgba(44, 44, 44, 0.1);
}

/* Prevent hover effects on mobile/touch devices */
@media (hover: none) {
    .nav-btn:hover, .setup-button:hover, 
    .suggestion-btn:hover, .copy-prompt:hover, .copy-prompt-btn:hover,
    .video-placeholder:hover, .screenshot-item:hover,
    #send-chat:hover, a:hover {
        transform: none;
        box-shadow: initial;
        background-color: initial;
        filter: none;
        text-decoration: initial;
    }
    
    .video-placeholder:hover .play-button {
        transform: none;
        color: initial;
        filter: initial;
    }
}

.setup-ai-chat {
    background: white;
    border: 2px solid #c5b783;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
}

.ai-chat-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ai-chat-header h3 {
    color: var(--ivey-dark-gray);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.ai-chat-header p {
    color: #666;
    margin: 0;
}

.setup-final-checklist {
    background: white;
    border: 2px solid #c5b783;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
}

.setup-final-checklist h3 {
    color: var(--ivey-dark-gray);
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    text-align: center;
}

.setup-final-checklist > p {
    color: #666;
    text-align: center;
    margin: 0 0 2rem 0;
}

.final-checks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.final-check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 6px;
    border-left: 4px solid #e1e5e9;
    transition: border-left-color 0.3s ease;
}

.final-check-item.complete {
    border-left-color: #28a745;
}

.check-icon {
    font-size: 1.5rem;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.check-content h4 {
    color: var(--ivey-dark-gray);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.check-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.workshop-ready {
    background: linear-gradient(135deg, #c5b783 0%, #b8a56f 100%);
    color: var(--ivey-dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ready-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.ready-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.ready-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.test-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.test-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.test-item input[type="checkbox"] {
    margin: 0;
}

.test-item label {
    color: var(--ivey-dark-gray);
    font-weight: 500;
    cursor: pointer;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-content h4 {
    margin: 0 0 0.25rem 0;
    color: #155724;
}

.success-content p {
    margin: 0;
    color: #155724;
}

/* Responsive Design for Setup Section */
@media (max-width: 768px) {
    .benefit-callout {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .ai-help-callout {
        padding: 1.5rem;
    }
    
    .step-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    .account-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .setup-ai-chat {
        padding: 1.5rem;
    }
    
    .setup-final-checklist {
        padding: 1.5rem;
    }
    
    .workshop-ready {
        flex-direction: column;
        text-align: center;
    }
    
    .ready-icon {
        font-size: 2rem;
    }
}
