        @font-face {
            font-family: 'Canela Deck';
            src: url('./Assets/Fonts/CanelaDeck-Regular-Trial.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Canela Deck';
            src: url('./Assets/Fonts/CanelaDeck-Medium-Trial.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        :root {
            /* Brand Colors */
            --lyt-purple: #b9adff;
            --lyt-purple-deep: #8272d0;
            --lyt-yellow: #fcf601;
            --lyt-yellow-muted: #c7c400;
            --lyt-cyan: #5dbcd2;
            --lyt-pink: #d669bc;
            --lyt-green: #67c073;

            /* Neutral Colors */
            --color-text-primary: #2d3748;
            --color-text-secondary: #4a5568;
            --color-text-tertiary: #666;
            --color-text-muted: #999;
            --color-text-disabled: #a0aec0;
            --color-border-light: #e2e8f0;
            --color-border-medium: #cbd5e0;
            --color-border-dark: #9ca3af;

            /* Spacing Scale (based on 0.25rem = 4px) */
            --space-xs: 0.25rem;    /* 4px */
            --space-sm: 0.5rem;     /* 8px */
            --space-md: 0.75rem;    /* 12px */
            --space-lg: 1rem;       /* 16px */
            --space-xl: 1.5rem;     /* 24px */
            --space-2xl: 2rem;      /* 32px */
            --space-3xl: 3rem;      /* 48px */

            /* Font Size Scale */
            --font-size-xs: 0.8rem;    /* 12.8px */
            --font-size-sm: 0.9rem;    /* 14.4px */
            --font-size-base: 1rem;    /* 16px */
            --font-size-md: 1.1rem;    /* 17.6px */
            --font-size-lg: 1.2rem;    /* 19.2px */
            --font-size-xl: 1.3rem;    /* 20.8px */
            --font-size-2xl: 1.8rem;   /* 28.8px */
            --font-size-3xl: 2.5rem;   /* 40px */

            /* Border Radius Scale */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-pill: 18px;
            --radius-full: 50%;

            /* Responsive Breakpoints (for reference in media queries) */
            --breakpoint-mobile: 480px;
            --breakpoint-tablet: 768px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body { 
            font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
            color: #2d3748;
            line-height: 1.6;
        }

        .header {
            text-align: center;
            padding: 2rem 1rem;
            background: linear-gradient(135deg, var(--lyt-purple) 0%, var(--lyt-cyan) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><line x1="20" y1="20" x2="60" y2="70" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><line x1="60" y1="70" x2="80" y2="30" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
            opacity: 0.3;
        }

        .header h1 {
            font-family: 'Canela Deck', Helvetica, sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            margin: 0;
            position: relative;
            z-index: 1;
            text-align: left;
        }

        .container {
            max-width: 792px;  /* Widened by 10% from 720px */
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .screen {
            display: none;
        }

        .screen.active {
            display: block;
        }

        .email-capture {
            text-align: center;
            background: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(185, 173, 255, 0.1);
            border: 2px solid rgba(185, 173, 255, 0.2);
        }

        .email-capture h2 {
            font-family: 'Canela Deck', sans-serif;
            font-size: 1.8rem;
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .email-capture p {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .email-input {
            width: 100%;
            max-width: 400px;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-family: 'Space Grotesk', sans-serif;
        }

        .email-input:focus {
            outline: none;
            border-color: var(--lyt-purple);
            box-shadow: 0 0 0 3px rgba(185, 173, 255, 0.1);
        }

        .start-btn {
            background: linear-gradient(135deg, var(--lyt-purple) 0%, var(--lyt-cyan) 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
            font-family: 'Space Grotesk', sans-serif;
        }

        .start-btn:hover {
            transform: translateY(-2px);
        }

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

        .assessment {
            background: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(185, 173, 255, 0.1);
            border: 2px solid rgba(185, 173, 255, 0.2);
        }

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

        .progress-text {
            text-align: center;
            font-family: 'DM Mono', monospace;
            color: var(--lyt-purple-deep);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .progress-bar-container {
            width: 100%;
            height: 8px;
            background: #f1f5f9;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--lyt-purple) 0%, var(--lyt-cyan) 100%);
            width: 0%;
            transition: width 0.3s ease;
        }

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

        .question-text {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--lyt-purple-deep);
            text-align: center;
            margin-bottom: 2rem;
            line-height: 1.5;
            font-family: 'Space Grotesk', sans-serif;
        }

        .answers {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .answer-btn {
            padding: 1rem 1.5rem;
            border: 2px solid;
            background: white;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Space Grotesk', sans-serif;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .answer-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .answer-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translate(-50%, -50%);
        }

        .answer-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .sd {
            border-color: var(--lyt-pink);
            color: var(--lyt-pink);
        }
        .sd::before { background: var(--lyt-pink); }
        .sd:hover { color: white; }

        .d {
            border-color: var(--lyt-cyan);
            color: var(--lyt-cyan);
        }
        .d::before { background: var(--lyt-cyan); }
        .d:hover { color: white; }

        .a {
            border-color: var(--lyt-cyan);
            color: var(--lyt-cyan);
        }
        .a::before { background: var(--lyt-cyan); }
        .a:hover { color: white; }

        .sa {
            border-color: var(--lyt-pink);
            color: var(--lyt-pink);
        }
        .sa::before { background: var(--lyt-pink); }
        .sa:hover { color: white; }

        .answer-btn span {
            position: relative;
            z-index: 1;
        }

        .navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            gap: 1rem;
        }

        .nav-btn {
            padding: 0.5rem;
            border: 1px solid var(--lyt-purple);
            background: white;
            color: var(--lyt-purple);
            border-radius: 50%;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .nav-btn:hover:not(:disabled) {
            background: var(--lyt-purple);
            color: white;
        }

        .nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            border-color: #ccc;
            color: #ccc;
        }

        .profile-banner {
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
            border-radius: 12px;
            border-left: 4px solid var(--lyt-purple);
            padding: 0.8rem 1.5rem;
            margin: 0.25rem 0;
            text-align: center;
        }

        .banner-main-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            color: var(--lyt-purple-deep);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .banner-profile-code {
            font-family: 'Canela Deck', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--lyt-purple-deep);
            margin: 0 0 0.2rem 0;
        }

        .banner-subtitle {
            font-family: 'Canela Deck', sans-serif;
            font-size: 1.8rem;
            color: var(--lyt-purple-deep);
            margin: 0;
            font-weight: 400;
        }

        /* Banner and Chord Diagram Side-by-Side */
        .banner-chord-wrapper {
            display: flex;
            gap: 2rem;
            align-items: center;
            margin-bottom: 2rem;
        }

        .banner-chord-wrapper .profile-banner {
            flex: 1;
            margin: 0;
        }

        .banner-chord-wrapper .chord-diagram {
            flex-shrink: 0;
            width: 300px;
        }

        .results {
            text-align: left;
            padding: 1.5rem 2rem 3rem 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(185, 173, 255, 0.1);
            border: 2px solid rgba(185, 173, 255, 0.2);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .profile-main-title {
            font-family: 'DM Mono', monospace;
            font-size: 1.3rem;
            color: var(--lyt-purple-deep);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .profile-header {
            display: block;
            margin-bottom: 2rem;
        }

        .profile-info {
            flex: 1;
        }

        /* Reusable Section Box Utility */
        .section-box {
            border-radius: var(--radius-md);
            padding: var(--space-xl) var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }

        .section-box--purple {
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
            border-left: 4px solid var(--lyt-purple);
        }

        .section-box--pink {
            background: linear-gradient(135deg, #fff8f0 0%, #fff0f8 100%);
            border-left: 4px solid var(--lyt-pink);
        }

        .section-box--cyan {
            background: linear-gradient(135deg, #f0fff8 0%, #f0f8ff 100%);
            border-left: 4px solid var(--lyt-cyan);
        }

        .section-box--yellow {
            background: linear-gradient(135deg, #fffef0 0%, #f8fff0 100%);
            border-left: 4px solid var(--lyt-yellow-muted);
        }

        .profile-code {
            font-family: 'Canela Deck', serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--lyt-purple-deep);
            margin: 0 0 0.5rem 0;
        }
        
        .profile-subtitle {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            color: #2d3748;
            background-color: rgba(185, 173, 255, 0.2);
            border: 2px solid var(--lyt-purple);
            padding: 0.4rem 1.5rem;
            border-radius: 24px;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .orientation-pill {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            color: #4a5568;
            background-color: rgba(156, 163, 175, 0.15);
            border: 1px solid #9ca3af;
            padding: 0.3rem 1.2rem;
            border-radius: 18px;
            margin-bottom: 0.5rem;
            font-weight: 600;
            width: auto;
            align-self: flex-start;
        }
        
        .tendency-pill {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            color: #4a5568;
            padding: 0.3rem 1.2rem;
            border-radius: 18px;
            margin-bottom: 0.5rem;
            font-weight: 600;
            border: 1px solid;
            width: auto;
            align-self: flex-start;
        }
        
        .architect-pill {
            background-color: rgba(93, 188, 210, 0.15);
            border-color: var(--lyt-cyan);
        }
        
        .gardener-pill {
            background-color: rgba(103, 192, 115, 0.15);
            border-color: var(--lyt-green);
        }

        .tendency-pills-container {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .secondary-tendency {
            opacity: 0.4;
        }

        .secondary-archetype {
            opacity: 0.4;
            font-size: 0.8rem;
            padding: 0.25rem 1rem;
            border-radius: 16px;
        }

        .archetype-pills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .archetype-pills {
            display: contents;
        }

        .archetype-pills.secondary-row {
            display: contents;
        }
        
        .archetype-pill {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            color: #4a5568;
            padding: 0.3rem 1.2rem;
            border-radius: 18px;
            font-weight: 600;
            border: 1px solid;
        }
        
        .inner-guide-pill {
            background-color: rgba(252, 246, 1, 0.2);
            border-color: var(--lyt-yellow-muted);
        }
        
        .synthesizer-pill {
            background-color: rgba(93, 188, 210, 0.15);
            border-color: var(--lyt-cyan);
        }
        
        .producer-pill {
            background-color: rgba(214, 105, 188, 0.15);
            border-color: var(--lyt-pink);
        }
        
        .creative-pill {
            background-color: rgba(185, 173, 255, 0.2);
            border-color: var(--lyt-purple);
        }

        .archetype-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .archetype-title {
            font-family: 'DM Mono', monospace;
            text-decoration: underline;
            color: var(--lyt-purple-deep);
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
            font-size: 1.1rem;
        }

        .archetype-subtitle {
            font-family: 'Space Grotesk', sans-serif;
            font-style: italic;
            color: var(--lyt-cyan);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .second-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        .tendency-section {
            display: flex;
            flex-direction: column;
        }

        .tendency-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            text-align: left;
        }

        .tendency-score-hint {
            font-family: 'DM Mono', monospace;
            font-size: 0.55rem;
            color: #999;
            margin-top: 0.75rem;
            text-align: left;
            font-weight: 400;
        }

        .tendency-title {
            font-family: 'DM Mono', monospace;
            text-decoration: underline;
            color: var(--lyt-purple-deep);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .tendency-subtitle {
            font-family: 'Space Grotesk', sans-serif;
            font-style: italic;
            color: var(--lyt-cyan);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .westerner-section {
            display: flex;
            flex-direction: column;
        }

        .westerner-title {
            font-family: 'DM Mono', monospace;
            text-decoration: underline;
            color: var(--lyt-purple-deep);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .westerner-subtitle {
            font-family: 'Space Grotesk', sans-serif;
            font-style: italic;
            color: var(--lyt-cyan);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .westerner-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            text-align: left;
        }

        .section-title {
            font-family: 'DM Mono', monospace;
            text-decoration: underline;
            color: var(--lyt-purple-deep);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            cursor: pointer;
            position: relative;
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-block;
        }
        
        .section-title:hover {
            color: var(--lyt-purple-deep);
            transform: scale(1.025);
        }
        
        .section-title.canela-font {
            font-family: 'Canela Deck', serif;
            text-decoration: none;
        }
        
        .section-title.space-grotesk-font {
            font-family: 'Space Grotesk', sans-serif;
            text-decoration: none;
        }
        
        .section-title::after {
            content: ' ▼';
            font-size: 0.8rem;
            transition: transform 0.2s ease;
            display: inline;
            margin-left: 0.5rem;
        }
        
        .section-title.collapsed::after {
            transform: rotate(-90deg);
        }
        
        .section-content {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.6;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .section-content.collapsed {
            max-height: 0;
            margin-bottom: 0;
        }
        
        .section-content.expanded {
            max-height: 500px;
        }

        .detailed-analysis {
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
            border-radius: var(--radius-md);
            border-left: 4px solid var(--lyt-purple);
            padding: var(--space-2xl);
            margin: var(--space-3xl) 0;
        }

        .analysis-title {
            font-family: 'DM Mono', monospace;
            text-decoration: underline;
            color: var(--lyt-purple-deep);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

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

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

        .analysis-subheading {
            font-family: 'DM Mono', monospace;
            color: var(--lyt-purple-deep);
            font-weight: 500;
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .analysis-content {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.6;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            text-align: left;
        }

        .result-box {
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
            border-radius: 12px;
            padding: 1.5rem;
            border-left: 4px solid var(--lyt-purple);
            position: relative;
            min-height: 200px;
        }

        .result-box.unlocked {
            border-left-color: var(--lyt-purple);
        }

        .result-box.teaser {
            border-left-color: #e2e8f0;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            opacity: 0.7;
        }

        .result-box h4 {
            font-family: 'Canela Deck', sans-serif;
            font-size: 1.2rem;
            color: var(--lyt-purple-deep);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .result-box.teaser h4 {
            color: #a0aec0;
        }

        .lock-icon {
            font-size: 1rem;
            opacity: 0.6;
        }

        .result-list {
            list-style: none;
            padding: 0;
        }

        .result-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(185, 173, 255, 0.1);
            position: relative;
            padding-left: 1.5rem;
            color: #4a5568;
        }

        .result-box.teaser .result-list li {
            color: #a0aec0;
        }

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

        .result-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--lyt-purple);
            font-weight: bold;
        }

        .result-box.teaser .result-list li::before {
            color: #cbd5e0;
        }

        .blurred-content {
            filter: blur(8px);
            pointer-events: none;
            user-select: none;
        }

        .teaser-content {
            color: #a0aec0;
            font-style: italic;
            text-align: center;
            padding: 2rem 1rem;
        }

        .unlock-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--lyt-green);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .workshop-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--lyt-pink);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .teaser-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #f0d9e8;
            color: #8b5c77;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .chord-diagram {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .chord-diagram img {
            width: 300px;
            height: 300px;
            display: block;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .chord-diagram img:hover {
            transform: scale(1.05);
        }

        /* Modal styles for enlarged image */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            cursor: pointer;
        }

        .image-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-modal img {
            max-width: 60%;
            max-height: 70%;
            width: auto;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
        }

        .share-btn {
            background: linear-gradient(135deg, var(--lyt-purple) 0%, var(--lyt-cyan) 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
            font-family: 'Space Grotesk', sans-serif;
            margin: 0.5rem;
            box-sizing: border-box;
            vertical-align: top;
            line-height: 1;
            height: auto;
            display: inline-block;
        }

        .share-btn:hover {
            transform: translateY(-2px);
        }

        .share-dropdown-container {
            position: relative;
            display: inline-block;
        }

        .share-dropdown {
            display: none;
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border: 1px solid rgba(185, 173, 255, 0.3);
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            padding: 0.5rem;
            margin-bottom: 0.5rem;
            min-width: 200px;
            z-index: 1000;
        }

        .share-dropdown.show {
            display: block;
        }

        .share-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border: none;
            background: transparent;
            color: #2d3748;
            text-decoration: none;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            transition: background-color 0.2s ease;
        }

        .share-option:hover {
            background-color: #f7fafc;
        }

        .share-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .footer {
            background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            color: white;
            padding: 3rem 1rem;
            text-align: center;
            margin-top: 3rem;
        }

        .footer h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--lyt-purple);
            margin-bottom: 1rem;
        }

        .footer p {
            margin-bottom: 1rem;
            opacity: 0.9;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        .footer a {
            color: var(--lyt-cyan);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--lyt-purple);
        }

        .footer-credits {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 2rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .header {
                padding: 1.5rem 1rem;
            }

            .header-content {
                gap: 1rem;
            }

            .header h1 {
                font-size: 2rem;
            }

            .logo {
                width: 60px;
                height: 60px;
            }

            .answers {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }

            .answer-btn {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .container {
                padding: 1rem;
            }
            
            .second-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .profile-banner {
                padding: 1.5rem;
            }

            .banner-main-title {
                font-size: 1.2rem;
            }

            .banner-profile-code {
                font-size: 2rem;
            }

            .banner-subtitle {
                font-size: 1.4rem;
            }

            /* Banner-Chord Layout: Stack vertically on tablets/mobile */
            .banner-chord-wrapper {
                flex-direction: column;
                gap: var(--space-xl);
            }

            .banner-chord-wrapper .chord-diagram {
                width: 250px;
            }
        }

        /* Demographic Intro Styles */
        .demographic-intro {
            text-align: center;
            padding: 2rem 1rem;
        }

        .demo-intro-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            color: var(--lyt-purple-deep);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .demo-intro-text {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 2rem;
            text-align: left;
        }

        .demo-intro-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .demo-continue-btn {
            background: linear-gradient(135deg, var(--lyt-pink) 0%, var(--lyt-pink) 100%);
            color: white;
            border: 2px solid var(--lyt-pink);
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', sans-serif;
        }

        .demo-continue-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 105, 188, 0.3);
        }

        .demo-skip-btn {
            background: white;
            color: #666;
            border: 2px solid #cbd5e0;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', sans-serif;
            opacity: 0.8;
        }

        .demo-skip-btn:hover {
            opacity: 1;
            border-color: #9ca3af;
        }

        /* Demographic Question Styles */
        .demographic-question {
            padding: 1rem 0;
        }

        .demo-question-text {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--lyt-purple-deep);
            margin-bottom: 2rem;
            line-height: 1.5;
            font-family: 'Space Grotesk', sans-serif;
        }

        .demo-options-container {
            margin-bottom: 2rem;
        }

        .demo-option {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            margin-bottom: 0.75rem;
            border-radius: 8px;
            transition: background-color 0.2s ease;
        }

        .demo-option:hover {
            background-color: rgba(185, 173, 255, 0.05);
        }

        .demo-radio,
        .demo-checkbox {
            width: 20px;
            height: 20px;
            margin-right: 1rem;
            cursor: pointer;
            flex-shrink: 0;
        }

        .demo-radio {
            accent-color: var(--lyt-pink);
        }

        .demo-checkbox {
            accent-color: var(--lyt-purple);
        }

        .demo-label {
            font-size: 1rem;
            color: #2d3748;
            cursor: pointer;
            font-family: 'Space Grotesk', sans-serif;
            flex: 1;
        }

        .demo-text-input {
            width: 100%;
            max-width: 400px;
            padding: 0.5rem 0.75rem;
            margin-left: 2.25rem;
            margin-top: 0.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Space Grotesk', sans-serif;
            transition: border-color 0.2s ease;
        }

        .demo-text-input:focus {
            outline: none;
            border-color: var(--lyt-purple);
            box-shadow: 0 0 0 3px rgba(185, 173, 255, 0.1);
        }

        /* Demographic Navigation Buttons */
        .demo-navigation {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-top: 2rem;
            align-items: center;
        }

        .demo-continue-btn {
            background: linear-gradient(135deg, var(--lyt-pink) 0%, var(--lyt-pink) 100%);
            color: white;
            border: 2px solid var(--lyt-pink);
            padding: 1rem 3rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', sans-serif;
            box-shadow: 0 4px 12px rgba(214, 105, 188, 0.2);
        }

        .demo-continue-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 105, 188, 0.4);
        }

        .demo-continue-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 2px 6px rgba(214, 105, 188, 0.1);
        }

        .demo-back-btn {
            background: white;
            color: #666;
            border: 2px solid #cbd5e0;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', sans-serif;
            opacity: 0.8;
        }

        .demo-back-btn:hover:not(:disabled) {
            opacity: 1;
            border-color: #9ca3af;
            background-color: #f9fafb;
        }

        .demo-back-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        @media (max-width: 480px) {
            .answers {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .results-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .results {
                padding: 2rem 1rem;
            }

            .chord-diagram img {
                width: 200px;
                height: 200px;
            }

            .profile-header {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .profile-info {
                text-align: center;
            }

            .profile-code {
                font-size: 2rem;
            }

            .tendency-description {
                text-align: left;
            }

            /* Banner-Chord Layout: Smaller chord on mobile */
            .banner-chord-wrapper .chord-diagram {
                width: 200px;
            }

            .demo-intro-buttons {
                flex-direction: column-reverse;
            }

            .demo-continue-btn,
            .demo-skip-btn {
                width: 100%;
            }

            .demo-navigation {
                flex-direction: column-reverse;
                gap: 0.75rem;
            }

            .demo-continue-btn {
                width: 100%;
                padding: 1rem 2rem;
            }

            .demo-back-btn {
                width: 100%;
            }
        }
