/* Clean, Editorial Style - Matching Homepage */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #fafaf8;
    color: #2d2d2d;
    line-height: 1.6;
}

/* No mesh background - keep it clean */
.mesh-bg {
    display: none;
}

/* Header */
.site-header {
    background: white;
    border-bottom: 1px solid #e8e8e6;
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo span {
    color: #666;
}

.header-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.header-nav a:hover {
    color: #1a1a1a;
}

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section - Simplified */
.letter-hero {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e6;
}

.letter-display {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: #e8e8e6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.letter-hero h1 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.word-count-badge {
    display: inline-block;
    background: #f0f0ee;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1rem;
}

.hero-intro {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Alphabet Navigation */
.alpha-nav {
    background: white;
    border: 1px solid #e8e8e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.alpha-nav h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alpha-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.alpha-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f3;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: all 0.15s;
}

.alpha-links a:hover {
    background: #1a1a1a;
    color: white;
}

.alpha-links a.active {
    background: #1a1a1a;
    color: white;
}

/* Word List Section */
.word-list-section {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1a1a1a;
    display: inline-block;
}

/* Word Grid */
.word-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

/* Word Cards - Clean Style */
.word-card {
    background: white;
    border: 1px solid #e8e8e6;
    border-radius: 8px;
    padding: 1.25rem;
    transition: box-shadow 0.2s;
}

.word-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.word-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.word-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.word-category {
    background: #f0f0ee;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #666;
}

.word-definition {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.word-example {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.word-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.synonym-tag {
    background: #f5f5f3;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #666;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e6;
}

.faq-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e8e8e6;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
}

.faq-question:hover {
    background: #f9f9f7;
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem;
}

.faq-answer-inner {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-size: 0.85rem;
    border-top: 1px solid #e8e8e6;
    margin-top: 3rem;
}

.site-footer a {
    color: #555;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .letter-hero h1 {
        font-size: 1.5rem;
    }

    .letter-display {
        font-size: 3rem;
    }

    .header-inner {
        padding: 1rem;
    }

    main {
        padding: 1.5rem 1rem;
    }
}