﻿/* ============================================
   CARTOGRAPHIE UX — Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --bg-primary: #0a0b14;
    --bg-secondary: #12131f;
    --bg-tertiary: #1a1b2e;
    --bg-card: rgba(26, 27, 46, 0.7);
    --bg-card-hover: rgba(35, 36, 58, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.07);

    --text-primary: #f0f0f5;
    --text-secondary: #a0a3b5;
    --text-muted: #6b6e82;
    --text-accent: #c4b5fd;

    --accent-primary: #8b5cf6;
    --accent-primary-rgb: 139, 92, 246;
    --accent-secondary: #6366f1;
    --accent-tertiary: #a78bfa;
    --accent-glow: rgba(139, 92, 246, 0.25);

    /* Deliverable colors */
    --color-empathy: #f472b6;
    --color-empathy-bg: rgba(244, 114, 182, 0.1);
    --color-empathy-border: rgba(244, 114, 182, 0.3);
    --color-journey: #38bdf8;
    --color-journey-bg: rgba(56, 189, 248, 0.1);
    --color-journey-border: rgba(56, 189, 248, 0.3);
    --color-experience: #34d399;
    --color-experience-bg: rgba(52, 211, 153, 0.1);
    --color-experience-border: rgba(52, 211, 153, 0.3);
    --color-blueprint: #fb923c;
    --color-blueprint-bg: rgba(251, 146, 60, 0.1);
    --color-blueprint-border: rgba(251, 146, 60, 0.3);

    /* Emotion colors */
    --emotion-positive: #34d399;
    --emotion-neutral: #fbbf24;
    --emotion-negative: #f87171;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.85rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.15rem;
    --font-size-xl: 1.35rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.25rem;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
    --border-accent: 1px solid rgba(139, 92, 246, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* --- Light Theme --- */
[data-theme="light"] {
    --bg-primary: #f5f5fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eeeef4;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(245, 245, 250, 0.9);
    --bg-glass: rgba(0, 0, 0, 0.03);
    --bg-glass-hover: rgba(0, 0, 0, 0.06);
    --text-primary: #1a1a2e;
    --text-secondary: #555570;
    --text-muted: #8888a0;
    --text-accent: #7c3aed;
    --accent-tertiary: #7c3aed;
    --accent-glow: rgba(139, 92, 246, 0.1);
    --border-subtle: 1px solid rgba(0, 0, 0, 0.08);
    --border-accent: 1px solid rgba(139, 92, 246, 0.25);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.08);
}

[data-theme="light"] body::before {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .btn-header-link,
[data-theme="light"] .btn-theme-toggle {
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-header-link:hover,
[data-theme="light"] .btn-theme-toggle:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .logo h1 {
    background: linear-gradient(135deg, #1a1a2e, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .radio-card-content,
[data-theme="light"] .checkbox-card {
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .btn-export {
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .checkbox-indicator {
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .journey-cell,
[data-theme="light"] .experience-cell,
[data-theme="light"] .blueprint-cell,
[data-theme="light"] .empathy-cell {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .empathy-pain {
    background: rgba(248, 113, 113, 0.06);
}

[data-theme="light"] .empathy-gain {
    background: rgba(52, 211, 153, 0.06);
}

[data-theme="light"] .toast {
    background: #ffffff;
    border-color: rgba(139, 92, 246, 0.2);
}

[data-theme="light"] .emotion-point-label {
    background: #ffffff;
}

[data-theme="light"] .emotion-svg-curve path[stroke="rgba(255,255,255,0.7)"] {
    stroke: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .export-mode {
    background: #ffffff !important;
    color: #1a1a2e !important;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

/* --- Header --- */
.header {
    padding: var(--space-sm) 0;
    border-bottom: var(--border-subtle);
    background: rgba(10, 11, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.logo h1 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-header-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-header-link:hover {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-header-link svg {
    width: 14px;
    height: 14px;
}

.btn-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-theme-toggle:hover {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-theme-toggle svg {
    width: 18px;
    height: 18px;
}

.btn-theme-toggle .icon-sun {
    display: none;
}

.btn-theme-toggle .icon-moon {
    display: block;
}

[data-theme="light"] .btn-theme-toggle .icon-sun {
    display: block;
}

[data-theme="light"] .btn-theme-toggle .icon-moon {
    display: none;
}

/* --- Main Content --- */
.main {
    padding: var(--space-3xl) 0;
}

/* --- Section Headers --- */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.results-header {
    flex-wrap: wrap;
}

.step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    font-weight: 700;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.section-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
}

/* --- Form --- */
.form-section {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--space-2xl);
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: var(--font-size-md);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.label-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-tertiary);
    flex-shrink: 0;
}

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* Radio Cards */
.radio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: var(--space-md);
}

.radio-card {
    cursor: pointer;
    position: relative;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-md);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.radio-card:hover .radio-card-content {
    background: var(--bg-glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.radio-card input:checked+.radio-card-content {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.radio-card-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.radio-card-label {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
}

.radio-card-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.4;
}

/* Checkbox Cards */
.checkbox-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}

.checkbox-card {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.checkbox-card:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.checkbox-card-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.checkbox-card-label {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.checkbox-card-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.4;
}

.checkbox-indicator {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-normal);
}

.checkbox-card input:checked~.checkbox-indicator {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.checkbox-card input:checked~.checkbox-indicator::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.checkbox-card[data-deliverable="empathy-map"] input:checked~.checkbox-indicator {
    background: var(--color-empathy);
    border-color: var(--color-empathy);
}

.checkbox-card[data-deliverable="journey-map"] input:checked~.checkbox-indicator {
    background: var(--color-journey);
    border-color: var(--color-journey);
}

.checkbox-card[data-deliverable="experience-map"] input:checked~.checkbox-indicator {
    background: var(--color-experience);
    border-color: var(--color-experience);
}

.checkbox-card[data-deliverable="blueprint"] input:checked~.checkbox-indicator {
    background: var(--color-blueprint);
    border-color: var(--color-blueprint);
}

.checkbox-card input:checked+.checkbox-card-content+.checkbox-indicator,
.checkbox-card:has(input:checked) {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.06);
}

/* Textarea */
.form-textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    resize: vertical;
    transition: all var(--transition-normal);
}

.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Generate Button */
.form-actions {
    display: flex;
    justify-content: center;
    padding-top: var(--space-md);
}

.btn-generate {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.btn-generate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-generate:hover::before {
    left: 100%;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(var(--accent-primary-rgb), 0.4);
}

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

.btn-generate:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-icon-sm {
    width: 16px;
    height: 16px;
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--bg-glass);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-left: auto;
}

.btn-secondary:hover {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Loading --- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(139, 92, 246, 0.15);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto var(--space-lg);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.loading-subtext {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* --- Results --- */
.results-section {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease both;
}

/* Scenario Card */
.scenario-card {
    border-left: 4px solid var(--accent-primary);
}

.scenario-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--accent-tertiary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.scenario-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--font-size-sm);
}

.scenario-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.scenario-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    font-size: var(--font-size-xs);
    color: var(--accent-tertiary);
    font-weight: 500;
}

/* Suggestions Card */
.suggestions-card {
    border-left: 4px solid var(--color-experience);
}

.suggestions-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    color: var(--color-experience);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.suggestion-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-experience-bg);
    border: 1px solid var(--color-experience-border);
    color: var(--color-experience);
    font-size: var(--font-size-xs);
    font-weight: 700;
    flex-shrink: 0;
}

.suggestion-content h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 2px;
}

.suggestion-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Deliverable Sections --- */
.deliverable-block {
    margin-bottom: var(--space-2xl);
    animation: slideUp 0.5s ease both;
}

.deliverable-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.deliverable-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.deliverable-title-icon {
    font-size: 1.5rem;
}

.deliverable-title h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.deliverable-title p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: 2px;
}

.export-buttons {
    display: flex;
    gap: var(--space-sm);
}

.btn-export {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-export:hover {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-export svg {
    width: 14px;
    height: 14px;
}

/* --- Empathy Map --- */
.empathy-map-visual {
    background: var(--bg-secondary);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow: hidden;
}

.empathy-map-persona {
    text-align: center;
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(244, 114, 182, 0.15);
}

.empathy-persona-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-empathy), #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-sm);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
    border: 3px solid transparent;
    box-shadow: var(--shadow-md);
}

.empathy-persona-avatar:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px var(--color-empathy-border);
}

.empathy-persona-avatar::after {
    content: '✏️';
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid var(--color-empathy);
    opacity: 1;
}

.empathy-persona-name {
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.empathy-persona-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: 2px;
}

.empathy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.empathy-cell {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(244, 114, 182, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.empathy-cell-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--color-empathy);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.empathy-cell-title span {
    font-size: 1.1rem;
}

.empathy-cell ul,
.empathy-pain ul,
.empathy-gain ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.empathy-cell li,
.empathy-pain li,
.empathy-gain li {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    padding-left: var(--space-md);
    position: relative;
    line-height: 1.5;
}

.empathy-cell li::before,
.empathy-pain li::before,
.empathy-gain li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-empathy);
}

.empathy-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.empathy-pain,
.empathy-gain {
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.empathy-pain {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.15);
}

.empathy-gain {
    background: rgba(52, 211, 153, 0.05);
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.empathy-pain .empathy-cell-title {
    color: var(--emotion-negative);
}

.empathy-gain .empathy-cell-title {
    color: var(--emotion-positive);
}

.empathy-pain li::before {
    color: var(--emotion-negative);
}

.empathy-gain li::before {
    color: var(--emotion-positive);
}

/* --- Journey Map --- */
.journey-map-visual {
    background: var(--bg-secondary);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow-x: auto;
}

.journey-stages {
    display: grid;
    gap: 4px;
    min-width: 1000px;
}

.journey-row {
    display: contents;
}

.journey-row-header {
    background: rgba(56, 189, 248, 0.08);
    padding: var(--space-md) var(--space-lg);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--color-journey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.journey-row-header span {
    font-size: 1rem;
}

.journey-cell {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    word-break: break-word;
    min-height: 80px;
}

.journey-cell h5 {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-journey);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.journey-cell ul {
    list-style: none;
}

.journey-cell li {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    padding: 2px 0;
    padding-left: var(--space-md);
    position: relative;
    line-height: 1.5;
}

.journey-cell li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-journey);
    font-size: 10px;
}

.journey-stage-header {
    background: rgba(56, 189, 248, 0.12);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    border-bottom: 2px solid rgba(56, 189, 248, 0.3);
}

.journey-stage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-journey);
    color: var(--bg-primary);
    font-size: var(--font-size-xs);
    font-weight: 700;
    margin-right: 6px;
}

/* Emotion curve row */
.journey-emotion-curve-row {
    display: contents;
}

.journey-emotion-curve-header {
    background: rgba(56, 189, 248, 0.08);
    padding: var(--space-md) var(--space-lg);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--color-journey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.journey-emotion-curve-header span {
    font-size: 1rem;
}

.journey-emotion-curve-container {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    min-height: 200px;
}


.emotion-curve-area {
    flex: 1;
    position: relative;
    min-height: 160px;
}

/* Background bands */
.emotion-bg-bands {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.emotion-band {
    flex: 1;
}

.emotion-band-positive {
    background: rgba(52, 211, 153, 0.04);
}

.emotion-band-neutral {
    background: rgba(251, 191, 36, 0.03);
}

.emotion-band-negative {
    background: rgba(248, 113, 113, 0.04);
}

/* SVG curve */
.emotion-svg-curve {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Emoji points */
.emotion-point {
    position: absolute;
    transform: translate(-50%, 50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: transform 0.3s ease;
}

.emotion-point:hover {
    transform: translate(-50%, 50%) scale(1.2);
}

.emotion-point-emoji {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    line-height: 1;
}

.emotion-point-label {
    font-size: 9px;
    color: var(--text-muted);
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    background: var(--bg-tertiary);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 2px;
}

.emotion-point:hover .emotion-point-label {
    opacity: 1;
}

/* --- Experience Map --- */
.experience-map-visual {
    background: var(--bg-secondary);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow-x: auto;
}

.experience-phases {
    display: grid;
    gap: 4px;
    min-width: 1000px;
}

.experience-phase-headers {
    display: grid;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.experience-channel-row {
    display: contents;
}

.experience-channel-label {
    background: rgba(52, 211, 153, 0.08);
    padding: var(--space-md) var(--space-lg);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--color-experience);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(52, 211, 153, 0.1);
}

.experience-channel-label span {
    font-size: 1rem;
}

.experience-cell {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    word-break: break-word;
    min-height: 60px;
}

.experience-cell p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.5;
}

.experience-phase-title {
    background: rgba(52, 211, 153, 0.12);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    border-bottom: 2px solid rgba(52, 211, 153, 0.3);
}

/* Emotion curve */
.emotion-curve-section {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(52, 211, 153, 0.1);
}

.emotion-curve-title {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-experience);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.emotion-curve {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 120px;
    padding: var(--space-md) 0;
}

.emotion-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.emotion-bar {
    width: 100%;
    max-width: 60px;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
    position: relative;
}

.emotion-bar.positive {
    background: linear-gradient(to top, rgba(52, 211, 153, 0.3), var(--emotion-positive));
}

.emotion-bar.neutral {
    background: linear-gradient(to top, rgba(251, 191, 36, 0.3), var(--emotion-neutral));
}

.emotion-bar.negative {
    background: linear-gradient(to top, rgba(248, 113, 113, 0.3), var(--emotion-negative));
}

.emotion-bar-label {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

/* --- Blueprint --- */
.blueprint-visual {
    background: var(--bg-secondary);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow-x: auto;
}

.blueprint-layers {
    display: grid;
    gap: 4px;
    min-width: 1000px;
}

.blueprint-layer {
    display: contents;
}

.blueprint-layer-row {
    display: contents;
}

.blueprint-layer-label {
    padding: var(--space-md) var(--space-lg);
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blueprint-layer-label span {
    font-size: 1rem;
}

.blueprint-layer.customer .blueprint-layer-label {
    background: rgba(251, 146, 60, 0.1);
    color: var(--color-blueprint);
}

.blueprint-layer.frontstage .blueprint-layer-label {
    background: rgba(56, 189, 248, 0.08);
    color: var(--color-journey);
}

.blueprint-layer.backstage .blueprint-layer-label {
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent-tertiary);
}

.blueprint-layer.support .blueprint-layer-label {
    background: rgba(244, 114, 182, 0.08);
    color: var(--color-empathy);
}

.blueprint-layer.evidence .blueprint-layer-label {
    background: rgba(52, 211, 153, 0.08);
    color: var(--color-experience);
}

.blueprint-cell {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    word-break: break-word;
    min-height: 60px;
}

.blueprint-cell p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.5;
}

.blueprint-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blueprint-divider::before,
.blueprint-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            var(--text-muted) 0,
            var(--text-muted) 6px,
            transparent 6px,
            transparent 12px);
    opacity: 0.4;
}

.blueprint-step-header {
    background: rgba(251, 146, 60, 0.12);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    border-bottom: 2px solid rgba(251, 146, 60, 0.3);
}

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-tertiary);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: var(--space-2xl) 0;
    border-top: var(--border-subtle);
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    .header {
        padding: var(--space-xs) 0;
    }

    .btn-header-link span {
        display: none;
    }

    .section-header h2 {
        font-size: var(--font-size-xl);
    }

    .form-section {
        padding: var(--space-lg);
    }

    .radio-cards {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .checkbox-cards {
        grid-template-columns: 1fr;
    }

    .empathy-grid,
    .empathy-bottom {
        grid-template-columns: 1fr;
    }

    .result-card {
        padding: var(--space-lg);
    }

    .deliverable-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .export-buttons {
        width: 100%;
    }

    .btn-export {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .radio-cards {
        grid-template-columns: 1fr 1fr;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo h1 {
        font-size: var(--font-size-lg);
    }
}

/* --- Editable Content --- */
.editable-hint {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-lg);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-tertiary);
    font-size: var(--font-size-xs);
    font-weight: 500;
    line-height: 1.5;
}

.editable-hint svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
}

[contenteditable="true"] {
    cursor: text;
    transition: outline 0.2s ease, background 0.2s ease;
    outline: 1px dashed rgba(139, 92, 246, 0.15);
    border-radius: 3px;
    padding: 1px 3px;
    margin: -1px -3px;
    position: relative;
}

[contenteditable="true"]:hover {
    outline-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.06);
}

[contenteditable="true"]:focus {
    outline-color: rgba(139, 92, 246, 0.6);
    background: rgba(139, 92, 246, 0.08);
    outline-style: solid;
}

/* --- Print / Export Ready --- */
.export-mode {
    background: #1a1b2e !important;
    color: #f0f0f5 !important;
}

.export-mode * {
    animation: none !important;
    transition: none !important;
}

.export-mode [contenteditable="true"] {
    outline: none !important;
    background: transparent !important;
}

/* --- Modal --- */
#avatarPickerModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--bg-secondary);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    padding: var(--space-lg) var(--space-xl);
    border-bottom: var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: var(--font-size-xl);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: var(--space-xl);
    overflow-y: auto;
}

.avatar-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.avatar-option {
    font-size: 2.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    transition: all var(--transition-normal);
}

.avatar-option:hover {
    background: var(--bg-glass-hover);
    transform: scale(1.1);
}

.upload-section {
    text-align: center;
    border-top: var(--border-subtle);
    padding-top: var(--space-xl);
    margin-top: var(--space-md);
}

.upload-section p {
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

#personaAvatar {
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
}

#personaAvatar:hover::after {
    content: "Changer";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 10px;
    padding: 2px 0;
    text-align: center;
}

[data-theme="light"] .modal-content {
    background: #ffffff;
}
/* Extracted from index.html */

.grimont-global-header {
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 23, 42, 0.85); /* Slightly darker for better readability */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* slightly stronger border */
    padding: 14px 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #e2e8f0;
    box-sizing: border-box;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.grimont-global-header * {
    box-sizing: border-box;
}
.grimont-global-header .ggh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ggh-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.ggh-logo-group {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.ggh-logo-group:hover {
    transform: scale(1.02);
}
.ggh-logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
    flex-shrink: 0;
}
.ggh-logo-text {
    font-family: 'Space Grotesk', monospace;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 0.05em;
    display: none;
}
.ggh-logo-text span {
    color: #00f2ff;
}
@media (min-width: 640px) {
    .ggh-logo-text { display: block; }
}
.ggh-separator {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: none;
}
@media (min-width: 768px) {
    .ggh-separator { display: block; }
}
.ggh-app-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ggh-app-title-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.ggh-app-icon-container {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(30, 41, 59, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #a78bfa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}
.ggh-app-name {
    font-weight: 700;
    color: white;
    font-size: 1.05rem;
    margin: 0;
    padding: 0;
    letter-spacing: 0.02em;
}
.ggh-app-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    max-width: 600px;
    display: none;
    margin: 4px 0 0 0;
    padding: 0;
    line-height: 1.4;
    font-weight: 300;
}
@media (min-width: 1024px) {
    .ggh-app-desc { display: block; }
}
.ggh-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ggh-right button {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #cbd5e1 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
.ggh-right button:hover {
    background: rgba(30, 41, 59, 1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px) !important;
}

