/* Thoughts from the Void */
.thoughts-section {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.thoughts-container {
    max-width: 700px;
    text-align: center;
}

.thoughts-header {
    margin-bottom: 2rem;
}

.thoughts-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(255, 0, 0, 0.6);
    text-transform: uppercase;
}

.thought-content {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 2rem;
    border: none;
    position: relative;
    font-style: italic;
}

.thought-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 4rem;
    color: rgba(255, 0, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.thought-content p {
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
}

.thought-meta {
    margin-top: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

/* Subtle breathing animation */
.thought-content {
    animation: thought-breathe 8s ease-in-out infinite;
}

@keyframes thought-breathe {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}
