:root {
    --teal-color: teal;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #808080;
}

/* Header Styles */
.header {
    padding: 2rem;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

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

.logo {
    font-size: 1rem;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #808080;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--teal-color);
}

/* Main Content Styles */
main {
    max-width: 650px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.hero-section {
    margin: 4rem 0;
}

.main-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.inline-link {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    margin-top: 4rem;
}

.footer-link {
    display: block;
    color: #808080;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--teal-color);
}

/* Thoughts Page Styles */
.thoughts-title {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.thought-item {
    margin-bottom: 2rem;
    padding: 1.2rem;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #111;
}

.thought-item h2 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thought-item .author,
.thought-item .authors {
    color: #808080;
    font-style: italic;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.thought-item .description {
    color: #808080;
    line-height: 1.6;
    font-size: 0.9rem;
}

.paper-link,
.external-link {
    color: var(--teal-color);
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: border-color 0.3s;
}

.paper-link:hover,
.external-link:hover {
    border-color: var(--teal-color);
}

/* For embedded tweets */
.tweet {
    display: flex;
    justify-content: center;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}

.tweet blockquote {
    margin: 0 !important; /* Override Twitter's default margins */
}

/* Update any links within descriptions */
.thought-item .description a {
    color: var(--teal-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.thought-item .description a:hover {
    opacity: 0.7;
}

/* Keep the MultiOn link in main text teal */
.main-text a {
    color: var(--teal-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.main-text a:hover {
    opacity: 0.7;
}

/* For Spotify embed */
.spotify {
    display: flex;
    justify-content: center;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}

.spotify iframe {
    margin: 0;
    width: 100%;
} 