/* unemployed ai - symmetrical layout without containers */

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

/* Hide scrollbars across all browsers */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    font-weight: 400;
}

.glitch-title {
    font-size: 96px;
    font-weight: 900;
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 12px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    animation: glitch-animation 2s infinite;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff,
        0 0 40px #00ffff,
        2px 2px 0px #ff00ff,
        4px 4px 0px #ffff00,
        6px 6px 0px #ff0000,
        8px 8px 0px #00ff00;
}

@keyframes glitch-animation {
    0% {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            2px 2px 0px #ff00ff,
            4px 4px 0px #ffff00;
    }
    25% {
        text-shadow: 
            0 0 10px #ff00ff,
            0 0 20px #ff00ff,
            0 0 30px #ff00ff,
            -2px 2px 0px #00ffff,
            4px -4px 0px #ffff00;
    }
    50% {
        text-shadow: 
            0 0 10px #ffff00,
            0 0 20px #ffff00,
            0 0 30px #ffff00,
            2px -2px 0px #ff00ff,
            -4px 4px 0px #00ffff;
    }
    75% {
        text-shadow: 
            0 0 10px #00ff00,
            0 0 20px #00ff00,
            0 0 30px #00ff00,
            -2px -2px 0px #ffff00,
            4px 2px 0px #ff00ff;
    }
    100% {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            2px 2px 0px #ff00ff,
            4px 4px 0px #ffff00;
    }
}

.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.hero-social {
    margin-bottom: 20px;
}

.hero-social p {
    margin-bottom: 20px;
    color: #b0b0b0;
    font-style: italic;
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.colorful-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.color-container {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.color-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cyan-container {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 200, 255, 0.05) 100%);
    border-color: rgba(0, 255, 255, 0.2);
}

.magenta-container {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(200, 0, 255, 0.05) 100%);
    border-color: rgba(255, 0, 255, 0.2);
}

.yellow-container {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1) 0%, rgba(255, 200, 0, 0.05) 100%);
    border-color: rgba(255, 255, 0, 0.2);
}

.green-container {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 200, 100, 0.05) 100%);
    border-color: rgba(0, 255, 0, 0.2);
}

.orange-container {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 150, 0, 0.05) 100%);
    border-color: rgba(255, 102, 0, 0.2);
}

.purple-container {
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.1) 0%, rgba(150, 0, 255, 0.05) 100%);
    border-color: rgba(128, 0, 255, 0.2);
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.triple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.container-content {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
}

.container-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.cyan-container .container-title {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.magenta-container .container-title {
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.yellow-container .container-title {
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.green-container .container-title {
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.orange-container .container-title {
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
}

.purple-container .container-title {
    text-shadow: 0 0 10px rgba(128, 0, 255, 0.8);
}

.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.column {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #f0f0f0;
}

.center-section {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.quote-section {
    text-align: center;
    font-size: 24px;
    color: #ffffff;
    font-style: italic;
    font-weight: 300;
    margin: 60px 0;
    padding: 0 40px;
    line-height: 1.6;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

.social-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    background-color: #1a1a1a;
    padding: 15px 30px;
    border: 1px solid #333;
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 16px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #2a2a2a;
    border-color: #444;
    transform: translateY(-2px);
}

.footer-content {
    margin-top: 80px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content p {
    margin-bottom: 30px;
    color: #b0b0b0;
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.footer-content p {
    margin-bottom: 30px;
    color: #b0b0b0;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.final-social {
    margin-top: 30px;
}

.skills-assessment {
    text-align: center;
}

.skills-assessment h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    text-transform: lowercase;
    text-shadow: 
        2px 0 #00ffff,
        -1px 1px #ff00ff,
        2px 1px #ffff00,
        -2px -1px #ff6600,
        1px 2px #00ff00;
}

.assessment-intro {
    margin-bottom: 30px;
    font-style: italic;
    color: #b0b0b0;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.skill-btn {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #e0e0e0;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.skill-btn:hover {
    background-color: #2a2a2a;
    border-color: #444;
    transform: translateY(-2px);
}

.skill-btn.validated {
    background-color: #0d2818;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.skill-btn.validated::before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 15px;
    color: #00ff00;
    font-size: 18px;
    font-weight: bold;
}

.skill-name {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.skill-status {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-btn.validated .skill-status {
    color: #00ff00;
}

.validation-counter {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

#assessment-result {
    margin-top: 15px;
    font-style: italic;
    color: #b0b0b0;
    min-height: 40px;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .skill-btn {
        padding: 15px;
        font-size: 13px;
    }
}

.breakdown-simulator {
    text-align: center;
}

.breakdown-simulator h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    text-transform: lowercase;
    text-shadow: 
        2px 0 #00ffff,
        -1px 1px #ff00ff,
        2px 1px #ffff00,
        -2px -1px #ff6600,
        1px 2px #00ff00;
}

.simulator-intro {
    margin-bottom: 40px;
    font-style: italic;
    color: #b0b0b0;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 0 0 40px 0;
    width: 100%;
}

.metric-panel {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.metric-panel:hover {
    background-color: #2a2a2a;
    border-color: #444;
    transform: translateY(-2px);
    width: 100%;
}

.metric-title {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: lowercase;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.metric-bar {
    width: 100%;
    height: 20px;
    background-color: #0a0a0a;
    border: 1px solid #444;
    margin-bottom: 10px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #00ffff 0%, 
        #ff00ff 25%, 
        #ffff00 50%, 
        #ff6600 75%, 
        #00ff00 100%);
    transition: width 0.5s ease;
    box-shadow: 
        0 0 5px #00ffff,
        inset 0 0 5px rgba(255, 255, 255, 0.2);
}

.metric-value {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.metric-btn {
    background-color: #0a0a0a;
    border: 1px solid #555;
    color: #e0e0e0;
    padding: 12px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    width: 100%;
}

.metric-btn:hover {
    background-color: #1a1a1a;
    border-color: #666;
    color: #ffffff;
}

.breakdown-status {
    margin-top: 30px;
    padding: 25px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    text-align: center;
    margin: 30px 0 0 0;
    width: 100%;
    box-sizing: border-box;
}

.status-display {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0px;
    font-style: italic;
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    border: 1px solid #444;
    text-align: center;
    line-height: 1.4;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        2px 1px #ffff00,
        -2px -1px #ff6600,
        1px 2px #00ff00;
}

.crisis-counter {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 25px 20px;
    background-color: #0a0a0a;
    border: 1px solid #444;
    text-align: center;
    flex-shrink: 0;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

#crisis-count {
    box-sizing: border-box;
    color: #ff00ff;
    text-shadow: 
        2px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.additional-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.additional-metrics .metric-panel {
    background-color: #0a0a0a;
    border: 1px solid #444;
    padding: 15px;
    margin: 0;
}

.status-indicators {
    background-color: #0a0a0a;
    border: 1px solid #444;
    padding: 15px;
}

.indicator-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
}

.indicator-label {
    color: #b0b0b0;
}

.indicator-value {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

@media (max-width: 768px) {
    .simulator-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metric-panel {
        padding: 20px;
    }
}

.interactive-section {
    text-align: center;
    margin: 60px 0;
}

.interactive-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    text-transform: lowercase;
    text-shadow: 
        2px 0 #00ffff,
        -1px 1px #ff00ff,
        2px 1px #ffff00,
        -2px -1px #ff6600,
        1px 2px #00ff00;
}

.interactive-intro {
    margin-bottom: 40px;
    font-style: italic;
    color: #b0b0b0;
    width: 800px;
    margin: 0 auto 40px auto;
}

.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.simulator-panel {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.simulator-panel:hover {
    background-color: #2a2a2a;
    border-color: #444;
    transform: translateY(-2px);
}

.panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-bottom {
    margin-top: auto;
}

.simulator-panel h4 {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: lowercase;
    font-size: 16px;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.status-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.status-btn {
    background-color: #0a0a0a;
    border: 1px solid #555;
    color: #e0e0e0;
    padding: 12px 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.status-btn:hover {
    background-color: #1a1a1a;
    border-color: #666;
    color: #ffffff;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    background-color: #0a0a0a;
    border: 1px solid #555;
    color: #e0e0e0;
    padding: 12px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    width: 100%;
}

.action-btn:hover {
    background-color: #1a1a1a;
    border-color: #666;
    color: #ffffff;
}

.emotional-state {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #0a0a0a;
    border: 1px solid #444;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.motivation-bar {
    margin-bottom: 20px;
}

.bar-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #0a0a0a;
    border: 1px solid #444;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #00ffff 0%, 
        #ff00ff 25%, 
        #ffff00 50%, 
        #ff6600 75%, 
        #00ff00 100%);
    transition: width 0.5s ease;
    box-shadow: 
        0 0 5px #00ffff,
        inset 0 0 5px rgba(255, 255, 255, 0.2);
}

.bar-value {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

.reality-check {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reality-display {
    color: #ffffff;
    font-style: italic;
    text-align: center;
    padding: 10px;
    background-color: #0a0a0a;
    border: 1px solid #444;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 
        1px 0 #00ffff,
        -1px 0 #ff00ff,
        1px 1px #ffff00,
        -1px -1px #ff6600;
}

/* Letter Effects */
.letter-effect {
    display: inline-block;
    animation: letterPulse 4s ease-in-out infinite;
    animation-delay: calc(var(--letter-index) * 0.05s);
}

@keyframes letterPulse {
    0%, 100% {
        color: #ffffff;
        text-shadow: 
            0 0 3px rgba(255, 255, 255, 0.4),
            0 0 6px rgba(0, 255, 255, 0.2);
    }
    25% {
        color: #00ffff;
        text-shadow: 
            0 0 6px rgba(0, 255, 255, 0.8),
            0 0 12px rgba(0, 255, 255, 0.4);
    }
    50% {
        color: #ff00ff;
        text-shadow: 
            0 0 6px rgba(255, 0, 255, 0.8),
            0 0 12px rgba(255, 0, 255, 0.4);
    }
    75% {
        color: #ffff00;
        text-shadow: 
            0 0 6px rgba(255, 255, 0, 0.8),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Remove all section-specific overrides - everything uses letterPulse now */
.intro-section .letter-effect,
.quote-section .letter-effect,
.column-left .letter-effect,
.column-right .letter-effect,
.final-section .letter-effect {
    animation: letterPulse 4s ease-in-out infinite;
    animation-delay: calc(var(--letter-index) * 0.05s);
}

/* Remove unused keyframe animations */
@keyframes letterGlow {
    0%, 100% {
        color: #ffffff;
        text-shadow: 
            0 0 3px rgba(255, 255, 255, 0.4),
            0 0 6px rgba(0, 255, 255, 0.2);
    }
    25% {
        color: #00ffff;
        text-shadow: 
            0 0 6px rgba(0, 255, 255, 0.8),
            0 0 12px rgba(0, 255, 255, 0.4);
    }
    50% {
        color: #ff00ff;
        text-shadow: 
            0 0 6px rgba(255, 0, 255, 0.8),
            0 0 12px rgba(255, 0, 255, 0.4);
    }
    75% {
        color: #ffff00;
        text-shadow: 
            0 0 6px rgba(255, 255, 0, 0.8),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .container-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .triple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .color-container {
        padding: 25px;
    }
    
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .simulator-panel {
        min-height: auto;
        padding: 20px;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .status-btn {
        padding: 15px;
    }
}