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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(to bottom, #f5e6d3 0%, #d4c4b0 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fef8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #d04e3f;
    font-size: 32px;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h2 {
    color: #d04e3f;
    font-size: 28px;
    margin-bottom: 24px;
}

.tagline {
    color: #8b6f5c;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.social-btn {
    width: 36px;
    height: 36px;
}

.social-btn:hover {
    transform: scale(1.1);
}

.spotify-btn {
    width: 36px;
    height: 36px;
}

.spotify-btn:hover {
    transform: scale(1.1);
}

.content-grid {
    display: grid;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-title {
    color: #d04e3f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-subtitle {
    color: #8b6f5c;
    font-size: 14px;
}

.card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.card-simple .card-title {
    text-align: center;
    margin: 0;
}

.transcript-list {
    display: grid;
    gap: 16px;
}

.transcript-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.transcript-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.transcript-item h3 {
    color: #d04e3f;
    margin-bottom: 8px;
}

.transcript-item .date {
    color: #8b6f5c;
    font-size: 14px;
    margin-bottom: 8px;
}

.transcript-item .excerpt {
    color: #5a5a5a;
    line-height: 1.5;
}

.transcript-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Ensure transcript page content spans full width */
@media (min-width: 768px) {
    .transcript-content-wrapper {
        grid-column: 1 / -1;
    }
}

.transcript-content h1 {
    margin-bottom: 8px;
}

.transcript-content .meta {
    color: #8b6f5c;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5d5c3;
}

.transcript-content p {
    margin-bottom: 16px;
    color: #333;
}

.back-link {
    display: inline-block;
    color: #d04e3f;
    text-decoration: none;
    margin-bottom: 24px;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .container {
        display: grid;
        grid-template-columns: 1.3fr 2fr;
        gap: 50px;
        align-items: start;
    }

    .header {
        text-align: left;
        margin-bottom: 0;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .social-links {
        justify-content: flex-start;
        margin-bottom: 0;
    }

    h1 {
        font-size: 36px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .content-grid {
        grid-column: 2;
    }
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5d5c3;
    text-align: center;
    font-size: 12px;
    color: #8b6f5c;
    grid-column: 1 / -1;
}

.footer a {
    color: #8b6f5c;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.vocabulary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.vocabulary-table th,
.vocabulary-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.vocabulary-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #d04e3f;
}

.vocabulary-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.vocabulary-table tr:hover {
    background-color: #f0f0f0;
}