:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #000000;
    --spacing-unit: 1.5rem;
    --max-width: 600px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 10vh;
    padding-bottom: 4rem; /* Added padding to bottom */
}

/* Quote Section */
.quote-section blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: #333; /* Darker for better readability left aligned */
    border-left: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Left aligned */
}

.quote-section blockquote footer {
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #666;
    font-weight: 400;
}

/* Apps Section */
.apps-section h2 {
    font-size: 2.5rem; /* Big */
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    text-align: left; /* Left aligned */
    font-weight: 700; /* Bold */
    letter-spacing: -0.02em;
    text-transform: none; /* Removed uppercase */
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Increased gap */
}

.app-item {
    display: flex;
    flex-direction: row; /* Side by side */
    align-items: flex-start;
    text-align: left; /* Left aligned */
    padding-bottom: 0;
    border-bottom: none; /* Removed border */
    gap: 1.5rem;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    background-color: #f5f5f5; /* Placeholder bg */
    flex-shrink: 0;
}

.app-details {
    display: flex;
    flex-direction: column;
}

.app-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.app-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 0.5rem;
}

.app-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
    max-width: 100%;
    line-height: 1.5;
}

.app-link {
    display: inline-block;
    text-decoration: underline; /* Hyperlink style */
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    color: var(--accent-color);
    border: none;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    background: none;
}

.app-link:hover {
    color: #555;
    background: none;
    border: none;
}

/* Page Header (for subpages) */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-header .subtitle {
    color: #666;
    font-size: 0.9rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent-color);
}

/* Content Section (for text pages) */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.content-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    color: #444;
}

.content-section p {
    color: #555;
    margin-bottom: 1rem;
}

.content-section ul {
    list-style-position: inside;
    margin-left: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.875rem;
    color: #999;
}

.site-footer p {
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: #666;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}
