/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --night-blue: #1A1A40;
    --book-beige: #F9F4EF;
    --coral: #FF6F59;
    --olive: #3A5A40;
    --text-dark: #2C3E50;
    --text-light: #F9F4EF;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--book-beige);
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    background-color: var(--night-blue);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--coral);
}

.nav-icons a {
    color: var(--text-light);
    margin-left: 1.5rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.nav-icons a:hover {
    color: var(--coral);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 64, 0.9), rgba(26, 26, 64, 0.9)),
                url('https://via.placeholder.com/1920x1080') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.mood-selector {
    margin-top: 2rem;
}

.mood-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.mood-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--coral);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mood-btn:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

/* Featured Books */
.featured-books {
    padding: 4rem 5%;
}

.featured-books h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--night-blue);
    font-size: 2rem;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.book-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);
}

.book-cover {
    position: relative;
    overflow: hidden;
}

.book-cover img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.book-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 64, 0.9);
    color: var(--text-light);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.book-card:hover .book-overlay {
    transform: translateY(0);
}

.book-card h3 {
    padding: 1rem;
    color: var(--night-blue);
    font-size: 1.2rem;
}

.author {
    padding: 0 1rem;
    color: var(--olive);
    font-style: italic;
}

.book-meta {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    color: var(--coral);
}

.add-to-list {
    width: 100%;
    padding: 1rem;
    background-color: var(--olive);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-list:hover {
    background-color: var(--coral);
}

/* Community Highlights */
.community-highlights {
    padding: 4rem 5%;
    background-color: var(--night-blue);
    color: var(--text-light);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--night-blue);
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--coral);
    background: #fff;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card i {
    color: var(--coral);
}

.event-card h3,
.event-card p,
.event-desc {
    color: var(--text-dark);
}

.join-event {
    background: var(--coral);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-weight: 500;
}

.join-event:hover {
    background: var(--olive);
    transform: scale(1.05);
}

/* Blog Preview */
.blog-preview {
    padding: 4rem 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.read-more {
    color: var(--coral);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

/* Surprise Book Section */
.surprise-book {
    background: linear-gradient(rgba(58, 90, 64, 0.9), rgba(58, 90, 64, 0.9)),
                url('https://via.placeholder.com/1920x1080') center/cover;
    padding: 4rem 5%;
    text-align: center;
    color: var(--text-light);
}

.surprise-btn {
    background: var(--coral);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.surprise-btn:hover {
    background: var(--night-blue);
    transform: scale(1.05);
}

/* LİTERRA Modal */
.lito-modal {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.modal-header {
    background: var(--night-blue);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 1rem;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.chat-input button {
    background: var(--coral);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--night-blue);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--coral);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-light);
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mood-buttons {
        flex-wrap: wrap;
    }
    
    .book-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .lito-modal {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 15px 15px 0 0;
    }
}

/* Daily Recommendation */
.daily-recommendation {
    padding: 4rem 5%;
    background-color: var(--book-beige);
}

.daily-content {
    max-width: 1200px;
    margin: 0 auto;
}

.daily-book {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.book-cover-large {
    position: relative;
    height: 100%;
}

.book-cover-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--coral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.book-details {
    padding: 2rem;
}

.book-details h2 {
    color: var(--night-blue);
    margin-bottom: 1rem;
}

.book-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    color: var(--coral);
}

.book-description {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: var(--text-dark);
}

.book-actions {
    display: flex;
    gap: 1rem;
}

.read-preview {
    background: var(--night-blue);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-preview:hover {
    background: var(--olive);
    transform: translateY(-2px);
}

/* Author Spotlight */
.author-spotlight {
    padding: 4rem 5%;
    background: linear-gradient(rgba(26, 26, 64, 0.05), rgba(26, 26, 64, 0.05));
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    padding: 2rem;
}

.author-bio {
    margin: 1rem 0;
    line-height: 1.8;
}

.author-books {
    margin: 1.5rem 0;
}

.author-books ul {
    list-style: none;
    margin-top: 0.5rem;
}

.author-books li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Enhanced Event Cards */
.event-desc {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Enhanced Blog Cards */
.blog-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--coral);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    margin-top: 2rem;
}

.newsletter h4 {
    margin-bottom: 1rem;
    color: var(--coral);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
}

.newsletter-form button {
    background: var(--coral);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--olive);
}

/* Enhanced LİTERRA Modal */
.message {
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 15px;
    max-width: 80%;
}

.lito-message {
    background: var(--night-blue);
    color: var(--text-light);
    margin-right: auto;
}

.user-message {
    background: var(--coral);
    color: var(--text-light);
    margin-left: auto;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .daily-book {
        grid-template-columns: 1fr;
    }
    
    .author-content {
        grid-template-columns: 1fr;
    }
    
    .book-actions {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Katalog Sayfası Stilleri */
.catalog-header {
    padding: 4rem 5%;
    background: var(--night-blue);
    color: var(--text-light);
    text-align: center;
}

.search-filters {
    max-width: 1200px;
    margin: 2rem auto;
}

.search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
}

.search-bar button {
    background: var(--coral);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.filter-select {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    cursor: pointer;
}

/* Blog Page Modernization */
.blog-header {
    padding: 4rem 5% 2rem 5%;
    background: var(--night-blue);
    color: var(--text-light);
    text-align: center;
}

.blog-categories {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 0 0;
}

.category-btn {
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.category-btn.active, .category-btn:hover {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,111,89,0.15);
}

.featured-post {
    padding: 3rem 5% 2rem 5%;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.featured-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2rem 2rem;
    background: linear-gradient(180deg, rgba(26,26,64,0.1) 0%, rgba(26,26,64,0.95) 100%);
    color: #fff;
    border-radius: 0 0 15px 15px;
}
.featured-text h2 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: #fff;
}
.featured-text .category {
    background: var(--coral);
    color: #fff;
    border-radius: 15px;
    padding: 0.3rem 1rem;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    display: inline-block;
}
.featured-text .excerpt {
    color: #f3f3f3;
    margin-bottom: 1rem;
}
.featured-text .post-meta {
    font-size: 0.95rem;
    color: #ffd9d2;
    margin-bottom: 0.7rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 5% 4rem 5%;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 420px;
}
.blog-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(26,26,64,0.12);
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-content {
    flex: 1;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-content .category {
    background: var(--coral);
    color: #fff;
    border-radius: 12px;
    padding: 0.2rem 0.8rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.blog-content h3 {
    color: var(--night-blue);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.blog-content p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--coral);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.read-more {
    color: var(--coral);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.read-more:hover {
    color: var(--olive);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin: 2rem 0 4rem 0;
}
.page-btn {
    background: #fff;
    color: var(--night-blue);
    border: 1px solid var(--coral);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.page-btn.active, .page-btn:hover {
    background: var(--coral);
    color: #fff;
}
.page-btn.next {
    border-radius: 20px;
    width: auto;
    padding: 0 1.2rem;
}

@media (max-width: 900px) {
    .featured-content img {
        height: 220px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 2% 2rem 2%;
    }
    .featured-post {
        padding: 2rem 2% 1rem 2%;
    }
}

/* Topluluk Sayfası Stilleri */
.community-header {
    padding: 4rem 5%;
    background: var(--night-blue);
    color: var(--text-light);
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
}

.event-date {
    text-align: center;
    padding: 1rem;
    background: var(--night-blue);
    color: var(--text-light);
    border-radius: 10px;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.event-details {
    flex: 1;
}

.event-time, .event-location {
    color: var(--coral);
    margin: 0.5rem 0;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}

.group-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
}

.group-card i {
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

.community-stats {
    background: var(--night-blue);
    color: var(--text-light);
    padding: 4rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Yazar Başvuru Sayfası Stilleri */
.application-header {
    padding: 4rem 5%;
    background: var(--night-blue);
    color: var(--text-light);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox label {
    margin: 0;
}

.submit-btn {
    background: var(--coral);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: var(--olive);
}

.benefits {
    padding: 4rem 5%;
    background: var(--book-beige);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

/* Responsive Tasarım Güncellemeleri */
@media (max-width: 768px) {
    .search-filters {
        padding: 0 1rem;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
    }
    
    .application-form {
        padding: 2rem 1rem;
    }
}

/* Mood Modal Styles */
#moodModal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(26,26,64,0.7);
    justify-content: center;
    align-items: center;
}
#moodModal.active {
    display: flex;
}
#moodModal .modal-content {
    background: #fff;
    margin: auto;
    padding: 2rem 2.5rem;
    border-radius: 18px;
    max-width: 700px;
    width: 95%;
    box-shadow: 0 8px 32px rgba(26,26,64,0.18);
    position: relative;
    text-align: center;
}
#moodModal h2 {
    color: var(--night-blue);
    margin-bottom: 1.5rem;
}
#moodModal .close-mood-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--coral);
    font-size: 2rem;
    font-weight: bold;
    background: none;
    border: none;
}
#moodModal .book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
@media (max-width: 600px) {
    #moodModal .modal-content {
        padding: 1rem 0.5rem;
    }
    #moodModal .book-grid {
        grid-template-columns: 1fr;
    }
} 