.infinite-post {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.infinite-post:last-child {
    border-bottom: none;
}

#loading-indicator {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

#loading-indicator .spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#no-more-posts {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.entry-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.entry-meta span {
    margin-right: 15px;
}

.random-indicator {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    display: inline-block;
    margin-left: 10px;
}

.random-icon {
    margin-right: 5px;
}

.post-thumbnail {
    margin-bottom: 30px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.entry-content {
    line-height: 1.7;
    margin-bottom: 30px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-links a {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85em;
    color: #666;
    transition: background-color 0.3s ease;
}

.tags-links a:hover {
    background: #ddd;
    color: #333;
}

@media (max-width: 768px) {
    .entry-title {
        font-size: 1.8em;
    }
    
    .infinite-post {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .entry-meta span {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
}