.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    transition: background 0.3s;
    backdrop-filter: blur(10px);
}

.back-link:hover {
    background: rgba(255,255,255,0.3);
}

.post-header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.post-icon {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    flex-shrink: 0;
}

.post-icon-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post-header h1 {
    margin: 0;
    color: #333;
    font-size: 2rem;
}

.post-type {
    color: #666;
    font-size: 1rem;
    margin-top: 5px;
}

.post-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
}

.post-actions {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.join-btn {
    flex: 1;
    padding: 20px;
    background: #667eea;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.share-btn {
    padding: 20px;
    background: #28a745;
    color: white;
    text-align: center;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.report-btn {
    padding: 20px;
    background: #dc3545;
    color: white;
    text-align: center;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.report-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.report-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.join-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.join-btn[style*="opacity: 0.5"] {
    background: #999;
    cursor: not-allowed;
}

.join-btn[style*="opacity: 0.5"]:hover {
    transform: none;
}

.post-description {
    background: white;
    padding: 20px;
    border-radius: 12px;
    color: #666;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.suggested-posts {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.suggested-posts h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.5rem;
}

.suggested-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
}

.suggested-post-card {
    display: block;
    text-decoration: none;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.suggested-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.suggested-post-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.suggested-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggested-post-icon {
    font-size: 4rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suggested-post-info {
    padding: 15px;
}

.suggested-post-title {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggested-post-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.suggested-post-type {
    background: #667eea;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.suggested-post-type--paid {
    background: #dc3545;
}

.suggested-post-price {
    font-weight: bold;
    color: #dc3545;
    font-size: 0.85rem;
}

.suggested-post-members {
    display: flex;
    align-items: center;
    gap: 4px;
}

.loading-small {
    text-align: center;
    color: #666;
    padding: 20px;
}

@media (max-width: 768px) {
    .post-header {
        flex-direction: column;
        text-align: center;
    }
    
    .post-stats {
        grid-template-columns: 1fr;
    }
    
    .suggested-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .suggested-post-image {
        height: 120px;
    }
}

