.homepage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.homepage-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-top: 2rem;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.site-subtitle {
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.search-section {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.search-submit {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.search-submit:hover {
    background: #ff5252;
}

/* Lyrics Listing */
.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.listing-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
}

.view-all-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #3498db;
    border-radius: 20px;
    transition: all 0.3s;
}

.view-all-link:hover {
    background: #3498db;
    color: white;
}

/* Lyrics Grid */
.lyrics-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.lyrics-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    overflow: hidden;
}

.lyrics-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left-color: #e74c3c;
}

.song-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.song-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.song-title a:hover {
    color: #3498db;
}

.artist-name {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
}

.song-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #ecf0f1;
}

.meta-items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.85rem;
    color: #95a5a6;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.translations-indicator {
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.song-actions {
    display: flex;
    justify-content: flex-end;
}

.read-more-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

/* No Content Message */
.no-lyrics {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

.no-content-message {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    border: 2px dashed #bdc3c7;
}

.no-content-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.submit-lyrics-btn {
    background: #27ae60;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s;
}

.submit-lyrics-btn:hover {
    background: #219a52;
    transform: translateY(-2px);
}

/* Pagination */
.pagination-section {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.pagination-info p {
    margin: 0.25rem 0;
    color: #7f8c8d;
}

.pagination-btn {
    background: #3498db;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Featured Categories */
.featured-categories {
    margin: 3rem 0;
}

.featured-categories h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-link {
    text-decoration: none;
    color: inherit;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.category-count {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9rem;
}

/* Site Stats */
.site-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .homepage-container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .site-subtitle {
        font-size: 1rem;
    }
    
    .listing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .song-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .meta-items {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .search-field {
        border-radius: 0;
    }
    
    .search-submit {
        justify-content: center;
        border-radius: 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lyrics-item {
        padding: 1rem;
    }
    
    .song-title {
        font-size: 1.2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}